You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2012/01/08 21:47:11 UTC

svn commit: r1228951 - in /axis/axis1/java/trunk: axis-saaj/pom.xml axis/pom.xml

Author: veithen
Date: Sun Jan  8 20:47:10 2012
New Revision: 1228951

URL: http://svn.apache.org/viewvc?rev=1228951&view=rev
Log:
Switch to Sun's versions of JAF and JavaMail because they still support Java 1.4.

Modified:
    axis/axis1/java/trunk/axis-saaj/pom.xml
    axis/axis1/java/trunk/axis/pom.xml

Modified: axis/axis1/java/trunk/axis-saaj/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-saaj/pom.xml?rev=1228951&r1=1228950&r2=1228951&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-saaj/pom.xml (original)
+++ axis/axis1/java/trunk/axis-saaj/pom.xml Sun Jan  8 20:47:10 2012
@@ -29,8 +29,8 @@
     <name>Axis :: SAAJ</name>
     <dependencies>
         <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-activation_1.1_spec</artifactId>
+            <groupId>javax.activation</groupId>
+            <artifactId>activation</artifactId>
             <version>1.1</version>
         </dependency>
     </dependencies>

Modified: axis/axis1/java/trunk/axis/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/pom.xml?rev=1228951&r1=1228950&r2=1228951&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis/pom.xml (original)
+++ axis/axis1/java/trunk/axis/pom.xml Sun Jan  8 20:47:10 2012
@@ -39,9 +39,9 @@
             <version>1.1.1</version>
         </dependency>
         <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-javamail_1.4_spec</artifactId>
-            <version>1.7.1</version>
+            <groupId>javax.mail</groupId>
+            <artifactId>mail</artifactId>
+            <version>1.4.1</version>
         </dependency>
         <dependency>
             <groupId>wsdl4j</groupId>
@@ -245,4 +245,20 @@
             </plugin>
         </plugins>
     </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <version>2.4</version>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>index</report>
+                            <report>dependencies</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
 </project>