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

coheigea pushed a commit to branch 4.1.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/4.1.x-fixes by this push:
     new e5ca5796790 Removing Jackson2 jars coming from WSS4J (#3090)
e5ca5796790 is described below

commit e5ca579679088028e332e063e703aab946830f39
Author: Colm O hEigeartaigh <[email protected]>
AuthorDate: Fri May 8 11:20:23 2026 +0100

    Removing Jackson2 jars coming from WSS4J (#3090)
    
    (cherry picked from commit 0237e8b67360ff4dae0f9fb149842b7777860c46)
---
 rt/rs/security/xml/pom.xml        | 10 ++++++++++
 rt/security-saml/pom.xml          |  8 ++++++++
 rt/ws/security/pom.xml            | 10 +++++++++-
 services/xkms/xkms-common/pom.xml | 10 ++++++++++
 4 files changed, 37 insertions(+), 1 deletion(-)

diff --git a/rt/rs/security/xml/pom.xml b/rt/rs/security/xml/pom.xml
index b53de822a6c..121c659f4d2 100644
--- a/rt/rs/security/xml/pom.xml
+++ b/rt/rs/security/xml/pom.xml
@@ -60,6 +60,16 @@
         <dependency>
             <groupId>org.apache.wss4j</groupId>
             <artifactId>wss4j-ws-security-dom</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.core</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.datatype</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 </project>
diff --git a/rt/security-saml/pom.xml b/rt/security-saml/pom.xml
index a7e4f3b5edf..d5bed4ed5bd 100644
--- a/rt/security-saml/pom.xml
+++ b/rt/security-saml/pom.xml
@@ -50,6 +50,14 @@
                     <groupId>org.bouncycastle</groupId>
                     <artifactId>*</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.core</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.datatype</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
             </exclusions> 
         </dependency>
         <dependency>
diff --git a/rt/ws/security/pom.xml b/rt/ws/security/pom.xml
index 72864285f18..7ee325f7f0c 100644
--- a/rt/ws/security/pom.xml
+++ b/rt/ws/security/pom.xml
@@ -147,7 +147,15 @@
                 <exclusion>
                     <groupId>org.bouncycastle</groupId>
                     <artifactId>*</artifactId>
-                 </exclusion>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.core</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.datatype</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>
diff --git a/services/xkms/xkms-common/pom.xml 
b/services/xkms/xkms-common/pom.xml
index 6919a384ec0..71f37e311f4 100644
--- a/services/xkms/xkms-common/pom.xml
+++ b/services/xkms/xkms-common/pom.xml
@@ -57,6 +57,16 @@
         <dependency>
             <groupId>org.apache.wss4j</groupId>
             <artifactId>wss4j-ws-security-dom</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.core</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.datatype</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
     <build>

Reply via email to