Skip to content

Commit 05d4406

Browse files
committed
PAYARA-3484 Add JAX-WS components
1 parent e30f352 commit 05d4406

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

jaxws/jaxws-client/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
<plugins>
1818
<plugin>
1919
<!-- wsimport for web service classes generation -->
20-
<groupId>org.codehaus.mojo</groupId>
20+
<groupId>com.helger.maven</groupId>
2121
<artifactId>jaxws-maven-plugin</artifactId>
22-
<version>1.11</version>
2322
<executions>
2423
<execution>
2524
<phase>generate-sources</phase>

jaxws/jaxws-endpoint/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
<plugin>
1919
<!-- wsgen for wsdl file generation -->
2020
<groupId>com.helger.maven</groupId>
21-
<artifactId>jaxws-maven-plugin</artifactId>
22-
<version>2.6</version>
21+
<artifactId>jaxws-maven-plugin</artifactId>
2322
<executions>
2423
<execution>
2524
<phase>process-classes</phase>

jaxws/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,29 @@
2424
<version>${project.version}</version>
2525
<scope>test</scope>
2626
</dependency>
27+
<dependency>
28+
<groupId>javax.xml.ws</groupId>
29+
<artifactId>jaxws-api</artifactId>
30+
<version>2.3.1</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.sun.xml.ws</groupId>
34+
<artifactId>jaxws-rt</artifactId>
35+
<version>2.3.2</version>
36+
</dependency>
2737
</dependencies>
2838

2939
<build>
40+
<pluginManagement>
41+
<plugins>
42+
<plugin>
43+
<groupId>com.helger.maven</groupId>
44+
<artifactId>jaxws-maven-plugin</artifactId>
45+
<version>2.6</version>
46+
</plugin>
47+
</plugins>
48+
</pluginManagement>
49+
3050
<plugins>
3151
<plugin>
3252
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)