You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by de...@apache.org on 2019/01/10 12:12:43 UTC

[cxf-xjc-utils] branch master updated: [CXF-7907] Change jaxb-api to jakarta.xml.bind-api artifact dependency

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

deki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf-xjc-utils.git


The following commit(s) were added to refs/heads/master by this push:
     new 79b34f2  [CXF-7907] Change jaxb-api to jakarta.xml.bind-api artifact dependency
79b34f2 is described below

commit 79b34f22c5dde6ba5e4295b1a68a050dada8b183
Author: Dennis Kieselhorst <ma...@dekies.de>
AuthorDate: Thu Jan 10 13:12:25 2019 +0100

    [CXF-7907] Change jaxb-api to jakarta.xml.bind-api artifact dependency
---
 boolean-test/pom.xml       |  4 ++--
 cxf-xjc-plugin/pom.xml     |  6 +++---
 dv-test/pom.xml            |  4 ++--
 pom.xml                    | 14 +++++++-------
 runtime/pom.xml            |  6 +++---
 ts-test/pom.xml            |  4 ++--
 wsdlextension-test/pom.xml |  4 ++--
 7 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/boolean-test/pom.xml b/boolean-test/pom.xml
index 92d67ae..f52b5c7 100644
--- a/boolean-test/pom.xml
+++ b/boolean-test/pom.xml
@@ -32,8 +32,8 @@
 
     <dependencies>
 		<dependency>
-			<groupId>javax.xml.bind</groupId>
-			<artifactId>jaxb-api</artifactId>
+			<groupId>jakarta.xml.bind</groupId>
+			<artifactId>jakarta.xml.bind-api</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>com.sun.xml.bind</groupId>
diff --git a/cxf-xjc-plugin/pom.xml b/cxf-xjc-plugin/pom.xml
index c18121a..e4162b5 100644
--- a/cxf-xjc-plugin/pom.xml
+++ b/cxf-xjc-plugin/pom.xml
@@ -82,9 +82,9 @@
             <scope>provided</scope>
         </dependency>
         <dependency>
-             <groupId>javax.xml.bind</groupId>
-             <artifactId>jaxb-api</artifactId>
-         </dependency>
+            <groupId>jakarta.xml.bind</groupId>
+            <artifactId>jakarta.xml.bind-api</artifactId>
+        </dependency>
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
             <artifactId>jaxb-xjc</artifactId>
diff --git a/dv-test/pom.xml b/dv-test/pom.xml
index 0bf1d29..bdc69ab 100644
--- a/dv-test/pom.xml
+++ b/dv-test/pom.xml
@@ -35,8 +35,8 @@
     <dependencies>
 
         <dependency>
-            <groupId>javax.xml.bind</groupId>
-            <artifactId>jaxb-api</artifactId>
+            <groupId>jakarta.xml.bind</groupId>
+            <artifactId>jakarta.xml.bind-api</artifactId>
         </dependency>
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
diff --git a/pom.xml b/pom.xml
index a6aee8d..4782ff6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -88,9 +88,9 @@
     <dependencyManagement>
         <dependencies>
             <dependency>
-                <groupId>javax.xml.bind</groupId>
-                <artifactId>jaxb-api</artifactId>
-                <version>2.2.12</version>
+                <groupId>jakarta.xml.bind</groupId>
+                <artifactId>jakarta.xml.bind-api</artifactId>
+                <version>2.3.2</version>
             </dependency>
             <dependency>
                 <groupId>com.sun.xml.bind</groupId>
@@ -135,7 +135,7 @@
             <dependency>
                 <groupId>org.apache.commons</groupId>
                 <artifactId>commons-lang3</artifactId>
-                <version>3.6</version>
+                <version>3.8.1</version>
             </dependency>
             <dependency>
                 <groupId>wsdl4j</groupId>
@@ -591,12 +591,12 @@
                 <jdk>[9,)</jdk>
             </activation>
             <properties>
-                <jaxb-version>2.3.0</jaxb-version>
+                <jaxb-version>2.3.2</jaxb-version>
             </properties>
             <dependencies>
                 <dependency>
-                    <groupId>javax.xml.bind</groupId>
-                    <artifactId>jaxb-api</artifactId>
+                    <groupId>jakarta.xml.bind</groupId>
+                    <artifactId>jakarta.xml.bind-api</artifactId>
                     <version>${jaxb-version}</version>
                 </dependency>
                 <dependency>
diff --git a/runtime/pom.xml b/runtime/pom.xml
index 8830fec..5c9a777 100644
--- a/runtime/pom.xml
+++ b/runtime/pom.xml
@@ -52,9 +52,9 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-             <groupId>javax.xml.bind</groupId>
-             <artifactId>jaxb-api</artifactId>
-         </dependency>
+            <groupId>jakarta.xml.bind</groupId>
+            <artifactId>jakarta.xml.bind-api</artifactId>
+        </dependency>
     </dependencies>
 
 </project>
diff --git a/ts-test/pom.xml b/ts-test/pom.xml
index 281b4e1..70916c9 100644
--- a/ts-test/pom.xml
+++ b/ts-test/pom.xml
@@ -33,8 +33,8 @@
 
     <dependencies>
         <dependency>
-            <groupId>javax.xml.bind</groupId>
-            <artifactId>jaxb-api</artifactId>
+            <groupId>jakarta.xml.bind</groupId>
+            <artifactId>jakarta.xml.bind-api</artifactId>
         </dependency>
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
diff --git a/wsdlextension-test/pom.xml b/wsdlextension-test/pom.xml
index b5c6f05..bc86e9f 100644
--- a/wsdlextension-test/pom.xml
+++ b/wsdlextension-test/pom.xml
@@ -33,8 +33,8 @@
     <dependencies>
 
         <dependency>
-            <groupId>javax.xml.bind</groupId>
-            <artifactId>jaxb-api</artifactId>
+            <groupId>jakarta.xml.bind</groupId>
+            <artifactId>jakarta.xml.bind-api</artifactId>
         </dependency>
         <dependency>
             <groupId>com.sun.xml.bind</groupId>