You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2024/03/29 10:06:12 UTC

(camel) branch camel-3.22.x updated: Upgrade Commons-compress to version 1.26.0

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

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


The following commit(s) were added to refs/heads/camel-3.22.x by this push:
     new 20d1ec27ecd Upgrade Commons-compress to version 1.26.0
20d1ec27ecd is described below

commit 20d1ec27ecd47c8cd20bb1ddf9adf64969f1b15c
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Mar 29 11:06:02 2024 +0100

    Upgrade Commons-compress to version 1.26.0
---
 components/camel-minio/pom.xml        | 5 +++++
 components/camel-tarfile/pom.xml      | 5 +++++
 components/camel-zip-deflater/pom.xml | 5 +++++
 parent/pom.xml                        | 2 +-
 4 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/components/camel-minio/pom.xml b/components/camel-minio/pom.xml
index 852387c61bf..ad43926e231 100644
--- a/components/camel-minio/pom.xml
+++ b/components/camel-minio/pom.xml
@@ -49,6 +49,11 @@
             <artifactId>commons-compress</artifactId>
             <version>${commons-compress-version}</version>
         </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>${commons-codec-version}</version>
+        </dependency>
 
         <!-- logging -->
         <dependency>
diff --git a/components/camel-tarfile/pom.xml b/components/camel-tarfile/pom.xml
index 247aeeeb6bc..6b14d16741f 100644
--- a/components/camel-tarfile/pom.xml
+++ b/components/camel-tarfile/pom.xml
@@ -44,6 +44,11 @@
             <artifactId>commons-compress</artifactId>
             <version>${commons-compress-version}</version>
         </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>${commons-codec-version}</version>
+        </dependency>
 
         <!-- test dependencies -->
         <dependency>
diff --git a/components/camel-zip-deflater/pom.xml b/components/camel-zip-deflater/pom.xml
index 77427f22416..b7f83decff6 100644
--- a/components/camel-zip-deflater/pom.xml
+++ b/components/camel-zip-deflater/pom.xml
@@ -44,6 +44,11 @@
             <artifactId>commons-compress</artifactId>
             <version>${commons-compress-version}</version>
         </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>${commons-codec-version}</version>
+        </dependency>
 
         <!-- testing -->
         <dependency>
diff --git a/parent/pom.xml b/parent/pom.xml
index 427a74141a7..ea99ef90ced 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -111,7 +111,7 @@
         <commons-codec-version>1.15</commons-codec-version>
         <commons-collections-version>3.2.2</commons-collections-version>
         <commons-collections4-version>4.4</commons-collections4-version>
-        <commons-compress-version>1.25.0</commons-compress-version>
+        <commons-compress-version>1.26.0</commons-compress-version>
         <commons-configuration-version>1.9</commons-configuration-version>
         <commons-configuration2-version>2.8.0</commons-configuration2-version>
         <commons-csv-version>1.8</commons-csv-version>