Skip to content

Commit

Permalink
Upgrade CXF 3.x to 3.5.8 #6
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Mar 26, 2024
1 parent 9f820b1 commit 78c6d04
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 28 deletions.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0-M3

* #6 Upgrade CXF 3.x to 3.5.8

## 2.0.B1

* #4 Switch from javax.xml.ws to jakarta.xml.ws
Expand Down
5 changes: 5 additions & 0 deletions bootique-cxf-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@
<artifactId>javax.jws-api</artifactId>
<version>1.1</version>
</dependency>
<!-- Java 9+ implicit deps -->
<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
</dependency>

<!-- Unit test dependencies -->
<dependency>
Expand Down
12 changes: 0 additions & 12 deletions bootique-cxf-jaxws-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
<version>${jaxws-api.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -64,13 +59,6 @@
<scope>compile</scope>
</dependency>

<!-- Java 9+ implicit deps -->

<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
</dependency>

<!-- Unit test dependencies -->
<dependency>
<groupId>io.bootique</groupId>
Expand Down
6 changes: 0 additions & 6 deletions bootique-cxf-jaxws-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,6 @@
</dependency>

<!-- Java 9+ implicit deps -->

<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
<version>${jaxws-api.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-ri</artifactId>
Expand Down
9 changes: 0 additions & 9 deletions bootique-cxf-jaxws-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
<version>${jaxws-api.version}</version>
</dependency>

</dependencies>
</dependencyManagement>
Expand Down Expand Up @@ -79,10 +74,6 @@
</dependency>

<!-- Java 9+ implicit deps -->
<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-ri</artifactId>
Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

<properties>
<bootique.version>${project.version}</bootique.version>
<cxf.version>3.3.1</cxf.version>
<cxf.version>3.5.8</cxf.version>
<apache.hc.version>4.5.5</apache.hc.version>
<jaxws-api.version>2.3.3</jaxws-api.version>
<jaxws-ri.version>2.3.3</jaxws-ri.version>
Expand Down Expand Up @@ -91,6 +91,11 @@
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
</dependency>
<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
<version>${jaxws-api.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 78c6d04

Please sign in to comment.