Skip to content

Commit 4665192

Browse files
committed
Add commons-codec 1.16.1
1 parent 93f7984 commit 4665192

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

driver/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,11 @@
106106
<artifactId>neo4j</artifactId>
107107
<scope>test</scope>
108108
</dependency>
109+
<!-- temporary explicit dependency to ensure testcontainers-bom 1.19.16 works with commons-compress 1.26.0 -->
110+
<dependency>
111+
<groupId>commons-codec</groupId>
112+
<artifactId>commons-codec</artifactId>
113+
</dependency>
109114
<dependency>
110115
<groupId>org.reactivestreams</groupId>
111116
<artifactId>reactive-streams-tck</artifactId>

pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@
4949
<testng.version>7.9.0</testng.version>
5050
<jarchivelib.version>1.2.0</jarchivelib.version>
5151
<!-- supply a newer version than the one supplied by the jarchivelib 1.2.0 -->
52-
<commons-compress.version>1.25.0</commons-compress.version>
52+
<commons-compress.version>1.26.0</commons-compress.version>
53+
<!-- temporary explicit dependency to ensure testcontainers-bom 1.19.16 works with commons-compress 1.26.0 -->
54+
<commons-codec.version>1.16.1</commons-codec.version>
5355
<bouncycastle-jdk18on.version>1.77</bouncycastle-jdk18on.version>
5456
<logback-classic.version>1.2.13</logback-classic.version>
5557
<jackson.version>2.16.1</jackson.version>
@@ -180,6 +182,13 @@
180182
<version>${commons-compress.version}</version>
181183
<scope>test</scope>
182184
</dependency>
185+
<!-- temporary explicit dependency to ensure testcontainers-bom 1.19.16 works with commons-compress 1.26.0 -->
186+
<dependency>
187+
<groupId>commons-codec</groupId>
188+
<artifactId>commons-codec</artifactId>
189+
<version>${commons-codec.version}</version>
190+
<scope>test</scope>
191+
</dependency>
183192
<dependency>
184193
<groupId>org.bouncycastle</groupId>
185194
<artifactId>bcprov-jdk18on</artifactId>

0 commit comments

Comments
 (0)