Javamail in maven repository

javamail and the activation jar are finally available from a maven repository! Especially great for projects like commons-email.

Update: …and Carlos put them up on ibiblio into the maven2 repository. Now you can just add them to your pom.xml like this


<dependency>
 <groupId>javax.activation</groupId>
 <artifactId>activation</artifactId>
 <version>1.1</version>
</dependency>
<dependency>
 <groupId>javax.mail</groupId>
 <artifactId>mail</artifactId>
 <version>1.4</version>
</dependency>



你可能感兴趣的:(maven,jar,UP,javamail)