simple-java-mail
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.simplejavamail</groupId> <artifactId>simple-java-mail</artifactId> <version>8.12.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.simplejavamail</groupId> <artifactId>maven-master-project</artifactId> <version>8.12.5</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>simple-java-mail</artifactId> <packaging>jar</packaging> <name>Simple Java Mail</name> <description>Simple API, Complex Emails. A light weight wrapper for the JavaMail SMTP API</description> <properties> <automaticModuleName>org.simplejavamail</automaticModuleName> <spring.version>[4.3.18.RELEASE,)</spring.version> </properties> <dependencies> <!-- core dependencies --> <dependency> <groupId>org.simplejavamail</groupId> <artifactId>core-module</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <!-- optional support modules --> <dependency> <groupId>org.simplejavamail</groupId> <artifactId>authenticated-socks-module</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.simplejavamail</groupId> <artifactId>dkim-module</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.simplejavamail</groupId> <artifactId>smime-module</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.simplejavamail</groupId> <artifactId>batch-module</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.simplejavamail</groupId> <artifactId>outlook-module</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <!-- testing --> <dependency> <groupId>org.simplejavamail</groupId> <artifactId>core-test-module</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mnode.ical4j</groupId> <artifactId>ical4j-vcard</artifactId> <version>2.0.0-beta2</version> <scope>test</scope> </dependency> <dependency><!-- SMTP test server --> <groupId>com.github.davidmoten</groupId> <artifactId>subethasmtp</artifactId> <version>7.1.1</version> <scope>test</scope> </dependency> <!-- required for java 9+ compatibility with assertj-assertions-generator-maven-plugin, which uses javax.annotation.Generated --> <!-- see https://github.com/assertj/assertj-assertions-generator-maven-plugin/issues/93 --> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>3.0.0</version> <scope>test</scope> </dependency> <dependency><!-- used to test loading of Environment properties in ConfigLoaderTest --> <groupId>org.junit-pioneer</groupId> <artifactId>junit-pioneer</artifactId> <version>1.9.1</version> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency><!--solve clash from junit-pioneer --> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-engine</artifactId> <version>1.10.2</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.assertj</groupId> <artifactId>assertj-assertions-generator-maven-plugin</artifactId> <version>2.2.0</version> <executions> <execution> <goals> <goal>generate-assertions</goal> </goals> </execution> </executions> <configuration> <classes> <param>org.simplejavamail.api.email.Email</param> </classes> <quiet>true</quiet> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.5</version> <configuration> <useSystemClassLoader>false</useSystemClassLoader> <forkCount>8</forkCount><!-- for quad cores with multi-threading --> <reuseForks>false</reuseForks> </configuration> </plugin> </plugins> </build> </project>