Skip to content

Commit

Permalink
commons-compress: update to 1.26.0 (#68)
Browse files Browse the repository at this point in the history
This needs commons-codec as well, as this is an 'optional' dependency
but we do use parts that use Codec.
  • Loading branch information
raboof authored Feb 21, 2024
1 parent c59cc3c commit ac3e0e2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@
<wagon-gitsite.version>0.3.1</wagon-gitsite.version>

<!-- Dependency versions -->
<commons-compress.version>1.24.0</commons-compress.version>
<commons-compress.version>1.26.0</commons-compress.version>
<commons-codec.version>1.16.1</commons-codec.version>
<junit.version>4.13.2</junit.version>
<maven-plugin-annotations.version>3.6.0</maven-plugin-annotations.version>
<maven-plugin-api.version>3.6.0</maven-plugin-api.version>
Expand Down Expand Up @@ -136,6 +137,12 @@
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons-codec.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit ac3e0e2

Please sign in to comment.