SubEtha SMTP.
SubEtha SMTP is an easy-to-use server-side SMTP library for Java..
Here is the list of declaration for subethasmtp. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.subethamail</groupId> <artifactId>subethasmtp</artifactId> <version>3.1.7</version> </dependency>
If you think this Maven repository POM file listing for subethasmtp is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache 2.0
URL: http://code.google.com/p/subethasmtp/source/browse/trunk/LICENSE.txt.
The subethasmtp-3.1.7 has 7 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.5 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 385 |
MIME | activation 1.1.1 The JavaBeans(TM) Activation Framework is used by the JavaMail(TM) API to manage MIME data | 89 |
Log | slf4j-api 1.6.1 The slf4j API | 621 |
Testing Coding Style | jsr305 1.3.9 JSR305 Annotations for Findbugs | 150 |
The following table lists the most popular artifacts which are depending on subethasmtp-3.1.7. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | commons-email 1.3 Commons-Email aims to provide an API for sending email. It is built on top of the JavaMail API, which it aims to simplify. | 10 |
The following plugins are used in the subethasmtp-3.1.7.jar
The following packages are defined in the subethasmtp-3.1.7.jar
org.subethamail.smtp org.subethamail.smtp.auth org.subethamail.smtp.client org.subethamail.smtp.command org.subethamail.smtp.helper org.subethamail.smtp.io org.subethamail.smtp.server org.subethamail.smtp.util org.subethamail.wiser
Here is the content of the POM file.
<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> <groupId>org.subethamail</groupId> <artifactId>subethasmtp</artifactId> <version>3.1.7</version> <name>SubEtha SMTP</name> <description> SubEtha SMTP is an easy-to-use server-side SMTP library for Java. </description> <url>http://subethasmtp.googlecode.com</url> <inceptionYear>2006</inceptionYear> <scm> <connection>http://subethasmtp.googlecode.com/svn</connection> <developerConnection>https://subethasmtp.googlecode.com/svn</developerConnection> <url>http://subethasmtp.googlecode.com/svn</url> </scm> <issueManagement> <system>Google</system> <url>http://code.google.com/p/subethasmtp/issues/list</url> </issueManagement> <mailingLists> <mailingList> <name>User and Developer List</name> <subscribe>http://www.subethamail.org/se/list/smtp</subscribe> <unsubscribe>http://www.subethamail.org/se/list/smtp</unsubscribe> <post>smtp@subethamail.org</post> <archive>http://www.subethamail.org/se/archive.jsp?listId=13</archive> </mailingList> </mailingLists> <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>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <configuration> <archive> <manifest> <mainClass>org.subethamail.smtp.Version</mainClass> <packageName>org.subethamail.smtp</packageName> </manifest> <manifestEntries> <Specification-Version>${project.version}</Specification-Version> <Implementation-Version>${maven.build.timestamp}</Implementation-Version> <url>${project.url}</url> </manifestEntries> </archive> </configuration> </plugin> <!-- always sign --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.googlecode.jmockit</groupId> <artifactId>jmockit</artifactId> <version>0.999.11</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <type>jar</type> <scope>test</scope> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.4</version> <type>jar</type> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> <type>jar</type> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> <type>jar</type> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.1</version> <type>jar</type> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>1.3.9</version> <type>jar</type> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.build.timestamp.format>MMMM dd yyyy</maven.build.timestamp.format> </properties> </project>