summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-10 10:25:06 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-10 10:25:06 +0000
commit51759eacf03904304d4057e86cc4d01f88ed115b (patch)
tree441bc6723f560c71f1601f2f458b00348cfe8583 /sca-java-1.x
parentda010b31b4003b86ab50f560484212020265fe8d (diff)
TUSCANY-3706: Fix dependencies on JAX-WS APIs and runtime
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1006268 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x')
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml21
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlless/pom.xml10
2 files changed, 26 insertions, 5 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml
index 44328d156a..ae0d9119bc 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml
+++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml
@@ -99,13 +99,24 @@
</exclusions>
</dependency>
- <dependency>
- <groupId>com.sun.xml.ws</groupId>
- <artifactId>jaxws-rt</artifactId>
- <version>2.1.4</version>
- </dependency>
+ <!-- Add javax.xml.ws.soap.Addressing in case the build is using
+ the bad version of jaxws-api with this class missing
+ -->
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jaxws_2.1_spec</artifactId>
+ <version>1.0</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
+ <groupId>com.sun.xml.ws</groupId>
+ <artifactId>jaxws-rt</artifactId>
+ <version>2.1.4</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlless/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlless/pom.xml
index 2fca7c721e..bfe1667fe2 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlless/pom.xml
+++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlless/pom.xml
@@ -98,6 +98,16 @@
<scope>compile</scope>
</dependency>
+ <!-- Add javax.xml.ws.soap.Addressing in case the build is using
+ the bad version of jaxws-api with this class missing
+ -->
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jaxws_2.1_spec</artifactId>
+ <version>1.0</version>
+ <scope>test</scope>
+ </dependency>
+
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>