You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by gs...@apache.org on 2009/11/12 15:32:30 UTC

svn commit: r835391 - /lucene/mahout/trunk/maven/pom.xml

Author: gsingers
Date: Thu Nov 12 14:32:30 2009
New Revision: 835391

URL: http://svn.apache.org/viewvc?rev=835391&view=rev
Log:
MAHOUT-198: fix mail jar issue

Modified:
    lucene/mahout/trunk/maven/pom.xml

Modified: lucene/mahout/trunk/maven/pom.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/maven/pom.xml?rev=835391&r1=835390&r2=835391&view=diff
==============================================================================
--- lucene/mahout/trunk/maven/pom.xml (original)
+++ lucene/mahout/trunk/maven/pom.xml Thu Nov 12 14:32:30 2009
@@ -85,6 +85,13 @@
         <enabled>false</enabled>
       </releases>
     </repository>
+    <!-- Needed for mail -->
+    <repository>
+      <id>java.net.legacy</id>
+      <name>Java.net Repo for Maven 1</name>
+      <url>http://download.java.net/maven/1</url>
+      <layout>legacy</layout>
+    </repository>
   </repositories>
   <issueManagement>
     <system>Jira</system>
@@ -226,4 +233,14 @@
       </build>
     </profile>
   </profiles>
+  <!--
+   
+   -->
+  <dependencies>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4</version>
+    </dependency>
+  </dependencies>
 </project>