diff options
Diffstat (limited to '')
-rw-r--r-- | java/sca/modules/interface-java-jaxws/pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/java/sca/modules/interface-java-jaxws/pom.xml b/java/sca/modules/interface-java-jaxws/pom.xml index f269d39329..0d0af94866 100644 --- a/java/sca/modules/interface-java-jaxws/pom.xml +++ b/java/sca/modules/interface-java-jaxws/pom.xml @@ -78,7 +78,6 @@ <version>1.0</version> </dependency> - <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> @@ -186,6 +185,21 @@ <groupId>org.codehaus.mojo</groupId> <artifactId>jaxws-maven-plugin</artifactId> <version>1.11</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> + </dependencies> <executions> <execution> <id>wsimport</id> |