Skip to content

Commit ee9454e

Browse files
committed
Update transitive dependency on commons-compress to 1.26.0 #31
1 parent c16a851 commit ee9454e

File tree

5 files changed

+33
-1
lines changed

5 files changed

+33
-1
lines changed

RELEASE-NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## 4.0-M1
22

33
* #30 Remove deprecated SDK v1 modules
4+
* #31 Update transitive dependency on commons-compress to 1.26.1
45

56
## 3.0-RC1
67

bootique-aws2-junit5/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@
4747
<groupId>org.testcontainers</groupId>
4848
<artifactId>localstack</artifactId>
4949
</dependency>
50+
<dependency>
51+
<groupId>org.apache.commons</groupId>
52+
<artifactId>commons-compress</artifactId>
53+
</dependency>
5054

5155
<!-- Unit test dependencies -->
5256
<dependency>

bootique-aws2-s3/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@
6060
<artifactId>junit-jupiter</artifactId>
6161
<scope>test</scope>
6262
</dependency>
63+
<dependency>
64+
<groupId>org.apache.commons</groupId>
65+
<artifactId>commons-compress</artifactId>
66+
<scope>test</scope>
67+
</dependency>
6368
<dependency>
6469
<groupId>org.testcontainers</groupId>
6570
<artifactId>localstack</artifactId>

bootique-aws2-secrets/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@
5656
<artifactId>bootique-junit5</artifactId>
5757
<scope>test</scope>
5858
</dependency>
59+
<dependency>
60+
<groupId>org.apache.commons</groupId>
61+
<artifactId>commons-compress</artifactId>
62+
<scope>test</scope>
63+
</dependency>
5964
<dependency>
6065
<groupId>org.testcontainers</groupId>
6166
<artifactId>junit-jupiter</artifactId>

pom.xml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
under the License.
1919
-->
2020

21-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2223

2324
<modelVersion>4.0.0</modelVersion>
2425
<parent>
@@ -39,6 +40,7 @@
3940

4041
<properties>
4142
<aws2.sdk.version>2.31.6</aws2.sdk.version>
43+
<commons.compress.version>1.26.1</commons.compress.version>
4244
</properties>
4345

4446
<modules>
@@ -113,6 +115,11 @@
113115
</exclusion>
114116
</exclusions>
115117
</dependency>
118+
<dependency>
119+
<groupId>org.apache.commons</groupId>
120+
<artifactId>commons-compress</artifactId>
121+
<version>${commons.compress.version}</version>
122+
</dependency>
116123

117124
<dependency>
118125
<groupId>io.bootique</groupId>
@@ -146,6 +153,12 @@
146153
<groupId>org.testcontainers</groupId>
147154
<artifactId>localstack</artifactId>
148155
<version>${testcontainers.version}</version>
156+
<exclusions>
157+
<exclusion>
158+
<groupId>org.apache.commons</groupId>
159+
<artifactId>commons-compress</artifactId>
160+
</exclusion>
161+
</exclusions>
149162
</dependency>
150163
<dependency>
151164
<groupId>org.testcontainers</groupId>
@@ -156,6 +169,10 @@
156169
<groupId>org.junit.jupiter</groupId>
157170
<artifactId>junit-jupiter-api</artifactId>
158171
</exclusion>
172+
<exclusion>
173+
<groupId>org.apache.commons</groupId>
174+
<artifactId>commons-compress</artifactId>
175+
</exclusion>
159176
</exclusions>
160177
</dependency>
161178
<dependency>

0 commit comments

Comments
 (0)