You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2023/02/09 06:35:43 UTC

[cxf] branch main updated: CXF-8818 - wsdl2java fails in 4.0.0 due to incorrect versions in Manifest (#1123)

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/main by this push:
     new 9b436cb374 CXF-8818 - wsdl2java fails in 4.0.0 due to incorrect versions in Manifest (#1123)
9b436cb374 is described below

commit 9b436cb374ca237602f657949882d5ef501098e4
Author: Colm O hEigeartaigh <co...@users.noreply.github.com>
AuthorDate: Thu Feb 9 06:35:36 2023 +0000

    CXF-8818 - wsdl2java fails in 4.0.0 due to incorrect versions in Manifest (#1123)
---
 distribution/manifest/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/distribution/manifest/pom.xml b/distribution/manifest/pom.xml
index 23c696bdb9..689b1c2a33 100644
--- a/distribution/manifest/pom.xml
+++ b/distribution/manifest/pom.xml
@@ -320,7 +320,7 @@
         <dependency>
             <groupId>jakarta.xml.ws</groupId>
             <artifactId>jakarta.xml.ws-api</artifactId>
-            <version>2.3.3</version>
+            <version>${cxf.jakarta.wsapi.version}</version>
         </dependency>
         <dependency>
             <groupId>jakarta.xml.bind</groupId>
@@ -329,12 +329,12 @@
         <dependency>
             <groupId>jakarta.jws</groupId>
             <artifactId>jakarta.jws-api</artifactId>
-            <version>2.1.0</version>
+            <version>${cxf.jakarta.jwsapi.version}</version>
         </dependency>
         <dependency>
             <groupId>jakarta.xml.soap</groupId>
             <artifactId>jakarta.xml.soap-api</artifactId>
-            <version>1.4.2</version>
+            <version>${cxf.jakarta.soapapi.version}</version>
         </dependency>
     </dependencies>
     <build>