You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ve...@apache.org on 2009/01/07 23:29:57 UTC

svn commit: r732541 - /webservices/axis2/trunk/java/modules/saaj/pom.xml

Author: veithen
Date: Wed Jan  7 14:29:57 2009
New Revision: 732541

URL: http://svn.apache.org/viewvc?rev=732541&view=rev
Log:
Committed change forgotten in r732539: Added Sun's SAAJ implementation as dependency in scope test, so that we can write unit tests that compare the behavior of the two implementations.

Modified:
    webservices/axis2/trunk/java/modules/saaj/pom.xml

Modified: webservices/axis2/trunk/java/modules/saaj/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/saaj/pom.xml?rev=732541&r1=732540&r2=732541&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/saaj/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/saaj/pom.xml Wed Jan  7 14:29:57 2009
@@ -73,6 +73,18 @@
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
         </dependency>
+        <dependency>
+            <groupId>com.sun.xml.messaging.saaj</groupId>
+            <artifactId>saaj-impl</artifactId>
+            <version>1.3</version>
+            <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.soap</groupId>
+                    <artifactId>saaj-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
     </dependencies>
     <build>
         <sourceDirectory>src</sourceDirectory>