diff options
Diffstat (limited to 'sca-java-1.x/trunk/itest')
-rw-r--r-- | sca-java-1.x/trunk/itest/wsdlgen/pom.xml | 23 | ||||
-rw-r--r-- | sca-java-1.x/trunk/itest/wsdlless/pom.xml | 10 |
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> |