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

commit 3c5fd619576e535531d1a73df5d30d3a75453fb9
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Jun 15 13:56:42 2023 +0200

    Use commons-codec that has CVE fix
---
 tooling/camel-tooling-maven/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/tooling/camel-tooling-maven/pom.xml 
b/tooling/camel-tooling-maven/pom.xml
index 378cb70cc71..d06e4186946 100644
--- a/tooling/camel-tooling-maven/pom.xml
+++ b/tooling/camel-tooling-maven/pom.xml
@@ -53,6 +53,12 @@
             <version>${jakarta-inject-version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>${commons-codec-version}</version>
+        </dependency>
+
         <!-- maven / maven resolver -->
         <dependency>
             <groupId>org.apache.maven</groupId>
@@ -93,6 +99,12 @@
             <groupId>org.apache.maven.resolver</groupId>
             <artifactId>maven-resolver-transport-http</artifactId>
             <version>${maven-resolver-version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-codec</groupId>
+                    <artifactId>commons-codec</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.maven.resolver</groupId>

Reply via email to