This is an automated email from the ASF dual-hosted git repository. coheigea pushed a commit to branch 3_0_x-fixes in repository https://gitbox.apache.org/repos/asf/ws-wss4j.git
commit d3e019f202759a2df318aa79f3f0b23c568f582d Author: Colm O hEigeartaigh <[email protected]> AuthorDate: Tue Apr 14 11:08:31 2026 +0100 Exclude commons-codec coming from commons-compress --- ws-security-stax/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ws-security-stax/pom.xml b/ws-security-stax/pom.xml index 815e38776..2668ce2f9 100644 --- a/ws-security-stax/pom.xml +++ b/ws-security-stax/pom.xml @@ -77,6 +77,13 @@ <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <scope>test</scope> + <exclusions> + <!-- We want it from XML Sec instead --> + <exclusion> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.tukaani</groupId>
