Skip to content

Commit 19bf1ae

Browse files
committed
Update transitive dependency on commons-compress to 1.26.1 #143
1 parent ad54fd6 commit 19bf1ae

4 files changed

Lines changed: 38 additions & 6 deletions

File tree

RELEASE-NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## 3.0-RC2
22

3+
* #143 Update transitive dependency on commons-compress to 1.26.1
34
* #142 Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0
45

56
## 3.0-RC1

bootique-jdbc-junit5-testcontainers/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@
5353
<groupId>org.testcontainers</groupId>
5454
<artifactId>jdbc</artifactId>
5555
</dependency>
56+
<dependency>
57+
<groupId>org.apache.commons</groupId>
58+
<artifactId>commons-compress</artifactId>
59+
</dependency>
60+
<dependency>
61+
<groupId>org.apache.commons</groupId>
62+
<artifactId>commons-lang3</artifactId>
63+
</dependency>
5664

5765
<!-- Unit test dependencies -->
5866
<dependency>

bootique-jdbc-liquibase-internal/pom.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,12 @@
6666
<groupId>javax.xml.bind</groupId>
6767
<artifactId>jaxb-api</artifactId>
6868
</exclusion>
69+
<exclusion>
70+
<groupId>org.apache.commons</groupId>
71+
<artifactId>commons-lang3</artifactId>
72+
</exclusion>
6973
</exclusions>
7074
</dependency>
71-
<!-- Fix the version of the "liquibase-core" transitive dependency -->
72-
<dependency>
73-
<groupId>org.apache.commons</groupId>
74-
<artifactId>commons-lang3</artifactId>
75-
<version>${commons.lang.version}</version>
76-
</dependency>
7775
<dependency>
7876
<groupId>javax.xml.bind</groupId>
7977
<artifactId>jaxb-api</artifactId>
@@ -85,6 +83,7 @@
8583
</exclusion>
8684
</exclusions>
8785
</dependency>
86+
<!-- Fix the version of the "liquibase-core" transitive dependency -->
8887
<dependency>
8988
<groupId>com.fasterxml.jackson.module</groupId>
9089
<artifactId>jackson-module-jaxb-annotations</artifactId>

pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,11 @@
4242
<postgresql.version>42.7.4</postgresql.version>
4343
<mysql.version>9.2.0</mysql.version>
4444
<liquibase.version>4.30.0</liquibase.version>
45+
<commons.compress.version>1.26.1</commons.compress.version>
4546
<commons.lang.version>3.18.0</commons.lang.version>
4647
<jaxb.version>2.3.1</jaxb.version>
4748
<hikaricp.version>6.2.1</hikaricp.version>
49+
4850
</properties>
4951

5052
<modules>
@@ -111,6 +113,12 @@
111113
<groupId>org.testcontainers</groupId>
112114
<artifactId>jdbc</artifactId>
113115
<version>${testcontainers.version}</version>
116+
<exclusions>
117+
<exclusion>
118+
<groupId>org.apache.commons</groupId>
119+
<artifactId>commons-compress</artifactId>
120+
</exclusion>
121+
</exclusions>
114122
</dependency>
115123
<dependency>
116124
<groupId>org.testcontainers</groupId>
@@ -148,6 +156,22 @@
148156
<artifactId>commons-csv</artifactId>
149157
<version>1.3</version>
150158
</dependency>
159+
<dependency>
160+
<groupId>org.apache.commons</groupId>
161+
<artifactId>commons-compress</artifactId>
162+
<version>${commons.compress.version}</version>
163+
<exclusions>
164+
<exclusion>
165+
<groupId>org.apache.commons</groupId>
166+
<artifactId>commons-lang3</artifactId>
167+
</exclusion>
168+
</exclusions>
169+
</dependency>
170+
<dependency>
171+
<groupId>org.apache.commons</groupId>
172+
<artifactId>commons-lang3</artifactId>
173+
<version>${commons.lang.version}</version>
174+
</dependency>
151175
<dependency>
152176
<groupId>org.awaitility</groupId>
153177
<artifactId>awaitility</artifactId>

0 commit comments

Comments
 (0)