You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ja...@apache.org on 2018/08/13 14:57:28 UTC

ant git commit: Fix the ant-javamail pom too, to use the right dependency

Repository: ant
Updated Branches:
  refs/heads/1.9.x 42812995d -> 94ef3d3bf


Fix the ant-javamail pom too, to use the right dependency


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/94ef3d3b
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/94ef3d3b
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/94ef3d3b

Branch: refs/heads/1.9.x
Commit: 94ef3d3bf52a75e16bd4fa222b88f0387cdc8944
Parents: 4281299
Author: Jaikiran Pai <ja...@apache.org>
Authored: Mon Aug 13 20:26:37 2018 +0530
Committer: Jaikiran Pai <ja...@apache.org>
Committed: Mon Aug 13 20:26:37 2018 +0530

----------------------------------------------------------------------
 src/etc/poms/ant-javamail/pom.xml | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/94ef3d3b/src/etc/poms/ant-javamail/pom.xml
----------------------------------------------------------------------
diff --git a/src/etc/poms/ant-javamail/pom.xml b/src/etc/poms/ant-javamail/pom.xml
index 6213f99..3dd9993 100644
--- a/src/etc/poms/ant-javamail/pom.xml
+++ b/src/etc/poms/ant-javamail/pom.xml
@@ -45,17 +45,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
       <scope>compile</scope>
     </dependency>
     <dependency>
-      <groupId>javax.mail</groupId>
-      <artifactId>javax.mail-api</artifactId>
+      <!-- This brings in the necessary dependencies.
+      See https://javaee.github.io/javamail/#Download_JavaMail_Release -->
+      <groupId>com.sun.mail</groupId>
+      <artifactId>javax.mail</artifactId>
       <version>1.5.6</version>
       <scope>compile</scope>
     </dependency>
-    <dependency>
-      <groupId>javax.activation</groupId>
-      <artifactId>activation</artifactId>
-      <version>1.1.1</version>
-      <scope>compile</scope>
-    </dependency>
   </dependencies> 
   <build>
     <plugins>