Skip to content

Commit 9ac1307

Browse files
committed
Update transitive dependency on commons-compress to 1.26.1 #143
1 parent 4f48586 commit 9ac1307

4 files changed

Lines changed: 37 additions & 5 deletions

File tree

RELEASE-NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* #138 Liquibase - exclude "javax.xml.bind:jaxb-api" dependency
55
* #139 Upgrade Apache Derby dependency to 10.17.x.x
66
* #140 "assertMatchesCsv(..)" can not compare CSVs that store nulls as empty strings
7+
* #143 Update transitive dependency on commons-compress to 1.26.1
78

89
## 3.0-RC2
910

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: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,13 @@
6767
<groupId>javax.xml.bind</groupId>
6868
<artifactId>jaxb-api</artifactId>
6969
</exclusion>
70+
<exclusion>
71+
<groupId>org.apache.commons</groupId>
72+
<artifactId>commons-lang3</artifactId>
73+
</exclusion>
7074
</exclusions>
7175
</dependency>
7276
<!-- Fix the version of the "liquibase-core" transitive dependency -->
73-
<dependency>
74-
<groupId>org.apache.commons</groupId>
75-
<artifactId>commons-lang3</artifactId>
76-
<version>${commons.lang.version}</version>
77-
</dependency>
7877
<dependency>
7978
<groupId>com.fasterxml.jackson.module</groupId>
8079
<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.7</postgresql.version>
4343
<mysql.version>9.2.0</mysql.version>
4444
<liquibase.version>4.30.0</liquibase.version>
45+
<commons.compress.version>1.26.0</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>
@@ -103,6 +105,12 @@
103105
<groupId>org.testcontainers</groupId>
104106
<artifactId>jdbc</artifactId>
105107
<version>${testcontainers.version}</version>
108+
<exclusions>
109+
<exclusion>
110+
<groupId>org.apache.commons</groupId>
111+
<artifactId>commons-compress</artifactId>
112+
</exclusion>
113+
</exclusions>
106114
</dependency>
107115
<dependency>
108116
<groupId>org.testcontainers</groupId>
@@ -140,6 +148,22 @@
140148
<artifactId>commons-csv</artifactId>
141149
<version>1.11.0</version>
142150
</dependency>
151+
<dependency>
152+
<groupId>org.apache.commons</groupId>
153+
<artifactId>commons-compress</artifactId>
154+
<version>${commons.compress.version}</version>
155+
<exclusions>
156+
<exclusion>
157+
<groupId>org.apache.commons</groupId>
158+
<artifactId>commons-lang3</artifactId>
159+
</exclusion>
160+
</exclusions>
161+
</dependency>
162+
<dependency>
163+
<groupId>org.apache.commons</groupId>
164+
<artifactId>commons-lang3</artifactId>
165+
<version>${commons.lang.version}</version>
166+
</dependency>
143167
<dependency>
144168
<groupId>org.awaitility</groupId>
145169
<artifactId>awaitility</artifactId>

0 commit comments

Comments
 (0)