JavaMail API.
The JavaMail API provides a platform-independent and protocol-independent framework to build mail and messaging applications..
Here is the list of declaration for mail. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.3.2</version> </dependency>
If you think this Maven repository POM file listing for mail is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The mail-1.3.2 has 1 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 |
---|---|---|
JEE | activation 1.0.2 JavaBeans Activation Framework (JAF) is a standard extension to the Java platform that lets you take advantage of standard services to: determine the type of an arbitrary piece of data; encapsulate access to it; discover the operations available on it; and instantiate the appropriate bean to perfor... | 27 |
The following table lists the most popular artifacts which are depending on mail-1.3.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Spring | spring-support 2.0.8 Spring Framework: Support | 6 |
Log | nlog4j 1.2.24 nlog4j - NLOG4J is a production-quality log4j-replacement with native SLF4J API support. See http://www.slf4j.org/nlog4j/ | 16 |
Log | nlog4j 1.2.25 nlog4j - NLOG4J is a production-quality log4j-replacement with native SLF4J API support. See http://www.slf4j.org/nlog4j/ | 12 |
Spring | spring 2.0 Spring Framework | 11 |
Spring | spring 1.2.9 Spring Framework | 27 |
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.3.2</version> <name>JavaMail API</name> <description> The JavaMail API provides a platform-independent and protocol-independent framework to build mail and messaging applications. </description> <url>http://java.sun.com/products/javamail/index.jsp</url> <distributionManagement> <downloadUrl>http://java.sun.com/products/javamail/downloads/index.html</downloadUrl> </distributionManagement> <dependencies> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.0.2</version> <scope>compile</scope> </dependency> </dependencies> </project>