diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-10 10:35:50 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-10 10:35:50 +0000 |
commit | 49a45a18e005bac8389fe88c8f10b4717fa9d62e (patch) | |
tree | c8c9c70c659a6e84995e7d88285d18bc82568478 /sca-java-1.x/branches | |
parent | 51759eacf03904304d4057e86cc4d01f88ed115b (diff) |
Replace compile-time dependency on jaxws-rt by jaxws-api
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1006269 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/branches')
4 files changed, 36 insertions, 12 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-bottom-up/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-bottom-up/pom.xml index 8d23392b6d..7ff267ddc2 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-bottom-up/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-bottom-up/pom.xml @@ -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> diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-top-down/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-top-down/pom.xml index 15912a3970..832609c803 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-top-down/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxb-top-down/pom.xml @@ -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> diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding-ws/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding-ws/pom.xml index 5ae3ef51a9..e8b1d3e7a1 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding-ws/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding-ws/pom.xml @@ -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> diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding/pom.xml index 4b6adad633..e8ba142ece 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/exceptions-cross-binding/pom.xml @@ -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> |