diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-13 09:52:35 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-13 09:52:35 +0000 |
commit | f0808fcc9de7b5de8481e1cd4f064ca10bdc767c (patch) | |
tree | eec58c97745d98863d18856a0007481a630ccb6c | |
parent | 55dd5975db403ae9695c0f38b47ecc2e80ad7926 (diff) |
TUSCANY-3706: Add jaxws-api dependencies to jaxws-maven-plugin configuration
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1022053 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxbgen/pom.xml | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxbgen/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxbgen/pom.xml index f6f5c34f75..0d318e7f7e 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxbgen/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/databindings/jaxbgen/pom.xml @@ -246,7 +246,30 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxws-maven-plugin</artifactId> - <version>1.9</version> + <version>1.12</version> + <!-- Explicitly add the transitive dependencies for jaxws-api + http://jira.codehaus.org/browse/MEV-498 + --> + <dependencies> + <dependency> + <groupId>javax.jws</groupId> + <artifactId>jsr181-api</artifactId> + <version>1.0-MR1</version> + </dependency> + <dependency> + <groupId>javax.annotation</groupId> + <artifactId>jsr250-api</artifactId> + <version>1.0</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> + </dependency> + </dependencies> <executions> <execution> <phase>process-resources</phase> |