summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/itest
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-26 13:16:55 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-26 13:16:55 +0000
commit18101df48721ba0d528d35b9b8d2be3c285a6a91 (patch)
tree088929e0dbc5dd5ef7f8c37b1bb95dd962f74091 /sca-java-1.x/trunk/itest
parent2ae9af6cb9dd93c8150a714753587b339695e4b9 (diff)
Merge r1006268 TUSCANY-3706: Fix dependencies on JAX-WS APIs and runtime
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1027538 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/itest')
-rw-r--r--sca-java-1.x/trunk/itest/wsdlgen/pom.xml23
-rw-r--r--sca-java-1.x/trunk/itest/wsdlless/pom.xml10
2 files changed, 27 insertions, 6 deletions
diff --git a/sca-java-1.x/trunk/itest/wsdlgen/pom.xml b/sca-java-1.x/trunk/itest/wsdlgen/pom.xml
index 444a4ba9a2..b76752ceb1 100644
--- a/sca-java-1.x/trunk/itest/wsdlgen/pom.xml
+++ b/sca-java-1.x/trunk/itest/wsdlgen/pom.xml
@@ -99,12 +99,23 @@
</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>
diff --git a/sca-java-1.x/trunk/itest/wsdlless/pom.xml b/sca-java-1.x/trunk/itest/wsdlless/pom.xml
index a4248bad76..cddf93f701 100644
--- a/sca-java-1.x/trunk/itest/wsdlless/pom.xml
+++ b/sca-java-1.x/trunk/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>