subethasmtp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.davidmoten</groupId> <artifactId>subethasmtp</artifactId> <version>7.1.7</version> </dependency>
<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>com.github.davidmoten</groupId> <artifactId>sonatype-parent</artifactId> <version>0.1</version> </parent> <artifactId>subethasmtp</artifactId> <version>7.1.7</version> <packaging>jar</packaging> <name>${project.artifactId}</name> <description>A fork of a fork (!) of SubEtha, an easy-to-use server-side SMTP library for Java.</description> <url>https://github.com/davidmoten/subethasmtp</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <mail-api.version>2.1.3</mail-api.version> <angus-mail.version>2.0.3</angus-mail.version> <slf4j.version>1.7.36</slf4j.version> </properties> <inceptionYear>2006</inceptionYear> <scm> <connection>scm:git:https://github.com/davidmoten/subethasmtp.git</connection> <developerConnection>scm:git:https://github.com/davidmoten/subethasmtp.git</developerConnection> <url>scm:git:https://github.com:davidmoten/subethasmtp.git</url> <tag>7.1.7</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/davidmoten/subethasmtp/issues</url> </issueManagement> <licenses> <license> <name>Apache 2.0</name> <url>http://code.google.com/p/subethasmtp/source/browse/trunk/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <!-- used for coverage by cov.io --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.13</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <excludes> <exclude>**/FileBasedSPSCQueueMemoryMapped*</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>jakarta.mail</groupId> <artifactId>jakarta.mail-api</artifactId> <version>${mail-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.angus</groupId> <artifactId>angus-mail</artifactId> <version>${angus-mail.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>findbugs-annotations</artifactId> <version>3.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>guava-mini</artifactId> <version>0.1.7</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>junit-extras</artifactId> <version>0.4</version> <scope>test</scope> </dependency> </dependencies> </project>