You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/01/08 17:58:56 UTC

[camel] 02/12: CAMEL-17435: removed javax.xml.ws:jaxws-api as a default dependency for the whole Camel project

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

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

commit e3d00b394f735c23cf649ab2495fa621daad5290
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Thu Jan 6 13:52:15 2022 +0100

    CAMEL-17435: removed javax.xml.ws:jaxws-api as a default dependency for the whole Camel project
---
 parent/pom.xml | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 763ba56..701a0b0 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -4037,6 +4037,18 @@
                 <scope>import</scope>
             </dependency>
 
+            <!-- Former dependencies from the deprecated JDK9+ profile -->
+            <dependency>
+                <groupId>javax.xml.ws</groupId>
+                <artifactId>jaxws-api</artifactId>
+                <version>2.3.0</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>javax.xml.bind</groupId>
+                        <artifactId>jaxb-api</artifactId>
+                    </exclusion>
+                </exclusions>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -4048,18 +4060,6 @@
         </dependency>
 
         <dependency>
-            <groupId>javax.xml.ws</groupId>
-            <artifactId>jaxws-api</artifactId>
-            <version>2.3.0</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>javax.xml.bind</groupId>
-                    <artifactId>jaxb-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <dependency>
             <groupId>jakarta.xml.bind</groupId>
             <artifactId>jakarta.xml.bind-api</artifactId>
             <version>${jakarta-jaxb-version}</version>