diff options
Diffstat (limited to '')
-rw-r--r-- | java/sca/modules/interface-java-jaxws/pom.xml | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/java/sca/modules/interface-java-jaxws/pom.xml b/java/sca/modules/interface-java-jaxws/pom.xml index 35cabd1948..f269d39329 100644 --- a/java/sca/modules/interface-java-jaxws/pom.xml +++ b/java/sca/modules/interface-java-jaxws/pom.xml @@ -7,15 +7,15 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations - * under the License. + * under the License. --> <project> <modelVersion>4.0.0</modelVersion> @@ -64,6 +64,21 @@ </exclusions> </dependency> + <!-- Explicitly add the transitive dependencies for jaxws-api + http://jira.codehaus.org/browse/MEV-498 + --> + <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> + + <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> @@ -190,7 +205,7 @@ </configuration> </execution> - <!-- + <!-- <execution> <id>wsgen</id> <phase>process-test-classes</phase> @@ -210,11 +225,11 @@ </plugin> - <!-- + <!-- wsimport cannot handle WSDL files without a service/binding element. - CXF wsdl2java plugin does support that. I had to override the default + CXF wsdl2java plugin does support that. I had to override the default value of wsdlRoot/testWsdlRoot to a non-existent file to avoid NPE --> - <!-- + <!-- <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-codegen-plugin</artifactId> |