You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2016/10/11 20:57:15 UTC

svn commit: r1764353 - /webservices/axiom/trunk/pom.xml

Author: veithen
Date: Tue Oct 11 20:57:15 2016
New Revision: 1764353

URL: http://svn.apache.org/viewvc?rev=1764353&view=rev
Log:
No need to depend on saaj-api. It's part of the JRE.

Modified:
    webservices/axiom/trunk/pom.xml

Modified: webservices/axiom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1764353&r1=1764352&r2=1764353&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Tue Oct 11 20:57:15 2016
@@ -458,6 +458,12 @@
                 <groupId>com.sun.xml.messaging.saaj</groupId>
                 <artifactId>saaj-impl</artifactId>
                 <version>1.3.10</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>javax.xml.soap</groupId>
+                        <artifactId>saaj-api</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
             <dependency>
                 <groupId>commons-codec</groupId>