You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by na...@apache.org on 2010/10/10 12:35:50 UTC

svn commit: r1006269 - in /tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest: databindings/jaxb-bottom-up/pom.xml databindings/jaxb-top-down/pom.xml exceptions-cross-binding-ws/pom.xml exceptions-cross-binding/pom.xml

Author: nash
Date: Sun Oct 10 10:35:50 2010
New Revision: 1006269

URL: http://svn.apache.org/viewvc?rev=1006269&view=rev
Log:
Replace compile-time dependency on jaxws-rt by jaxws-api

Modified:
    tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-bottom-up/pom.xml
    tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-top-down/pom.xml
    tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding-ws/pom.xml
    tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding/pom.xml

Modified: tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-bottom-up/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-bottom-up/pom.xml?rev=1006269&r1=1006268&r2=1006269&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-bottom-up/pom.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-bottom-up/pom.xml Sun Oct 10 10:35:50 2010
@@ -119,9 +119,15 @@
         </dependency>
 
         <dependency>
-            <groupId>com.sun.xml.ws</groupId>
-            <artifactId>jaxws-rt</artifactId>
-            <version>2.1.3</version>
+            <groupId>javax.xml.ws</groupId>
+            <artifactId>jaxws-api</artifactId>
+            <version>2.1</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.soap</groupId>
+                    <artifactId>saaj-api</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <!-- Added by Simon Nash    -->
         <dependency>

Modified: tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-top-down/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-top-down/pom.xml?rev=1006269&r1=1006268&r2=1006269&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-top-down/pom.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-top-down/pom.xml Sun Oct 10 10:35:50 2010
@@ -127,9 +127,15 @@
         </dependency>
 
         <dependency>
-            <groupId>com.sun.xml.ws</groupId>
-            <artifactId>jaxws-rt</artifactId>
-            <version>2.1.3</version>
+            <groupId>javax.xml.ws</groupId>
+            <artifactId>jaxws-api</artifactId>
+            <version>2.1</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.soap</groupId>
+                    <artifactId>saaj-api</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <!-- Added by Simon Nash    -->
         <dependency>

Modified: tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding-ws/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding-ws/pom.xml?rev=1006269&r1=1006268&r2=1006269&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding-ws/pom.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding-ws/pom.xml Sun Oct 10 10:35:50 2010
@@ -45,9 +45,15 @@
         </dependency>
 
         <dependency>
-            <groupId>com.sun.xml.ws</groupId>
-            <artifactId>jaxws-rt</artifactId>
-            <version>2.1.3</version>
+            <groupId>javax.xml.ws</groupId>
+            <artifactId>jaxws-api</artifactId>
+            <version>2.1</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.soap</groupId>
+                    <artifactId>saaj-api</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>

Modified: tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding/pom.xml?rev=1006269&r1=1006268&r2=1006269&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding/pom.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding/pom.xml Sun Oct 10 10:35:50 2010
@@ -38,9 +38,15 @@
     
     <dependencies>
         <dependency>
-            <groupId>com.sun.xml.ws</groupId>
-            <artifactId>jaxws-rt</artifactId>
-            <version>2.1.3</version>
+            <groupId>javax.xml.ws</groupId>
+            <artifactId>jaxws-api</artifactId>
+            <version>2.1</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.soap</groupId>
+                    <artifactId>saaj-api</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>