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 0237e8b6736 Removing Jackson2 jars coming from WSS4J (#3090)
0237e8b6736 is described below
commit 0237e8b67360ff4dae0f9fb149842b7777860c46
Author: Colm O hEigeartaigh <[email protected]>
AuthorDate: Fri May 8 11:20:23 2026 +0100
Removing Jackson2 jars coming from WSS4J (#3090)
---
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 b69a69b6ed2..61721b3c133 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 6576f2856cb..29431581360 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 c9623480e8b..66bb88f5ea6 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 8aa8ec72726..defa84e60e4 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>