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

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


The following commit(s) were added to refs/heads/main by this push:
     new 414592c6a2a camel-soap and camel-spring-ws needs saaj-impl and upgrade 
it to jakarta compatible
414592c6a2a is described below

commit 414592c6a2a7288eb4c030b1c0ca3831f1d6b4cb
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Fri Jan 13 10:59:37 2023 +0100

    camel-soap and camel-spring-ws needs saaj-impl and upgrade it to jakarta 
compatible
---
 components/camel-soap/pom.xml      |  4 ++++
 components/camel-spring-ws/pom.xml | 10 ++++------
 parent/pom.xml                     |  6 +-----
 3 files changed, 9 insertions(+), 11 deletions(-)

diff --git a/components/camel-soap/pom.xml b/components/camel-soap/pom.xml
index 70965483a30..db2579cbabb 100644
--- a/components/camel-soap/pom.xml
+++ b/components/camel-soap/pom.xml
@@ -57,6 +57,10 @@
             <groupId>jakarta.jws</groupId>
             <artifactId>jakarta.jws-api</artifactId>
         </dependency>
+        <dependency>
+            <groupId>com.sun.xml.messaging.saaj</groupId>
+            <artifactId>saaj-impl</artifactId>
+        </dependency>
 
         <!-- test dependencies -->
         <dependency>
diff --git a/components/camel-spring-ws/pom.xml 
b/components/camel-spring-ws/pom.xml
index 9426a67de76..1a551c1d47d 100644
--- a/components/camel-spring-ws/pom.xml
+++ b/components/camel-spring-ws/pom.xml
@@ -87,6 +87,10 @@
             <groupId>jakarta.annotation</groupId>
             <artifactId>jakarta.annotation-api</artifactId>
         </dependency>
+        <dependency>
+            <groupId>com.sun.xml.messaging.saaj</groupId>
+            <artifactId>saaj-impl</artifactId>
+        </dependency>
 
         <!-- test dependencies -->
         <dependency>
@@ -162,11 +166,5 @@
             <scope>test</scope>
         </dependency>
 
-        <dependency>
-            <groupId>com.sun.xml.messaging.saaj</groupId>
-            <artifactId>saaj-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
-
     </dependencies>
 </project>
diff --git a/parent/pom.xml b/parent/pom.xml
index f4baf468e7d..0947673a0f5 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -3858,12 +3858,8 @@
             <dependency>
                 <groupId>com.sun.xml.messaging.saaj</groupId>
                 <artifactId>saaj-impl</artifactId>
-                <version>1.5.3</version>
+                <version>3.0.0</version>
                 <exclusions>
-                    <exclusion>
-                        <groupId>javax.xml.soap</groupId>
-                        <artifactId>javax.xml.soap-api</artifactId>
-                    </exclusion>
                     <exclusion>
                         <!--Get dependency from jaxb-runtime-->
                         <groupId>org.jvnet.staxex</groupId>

Reply via email to