Skip to content

Commit 104fb6f

Browse files
authored
Add commons-codec 1.16.1 (#1539)
1 parent 93f7984 commit 104fb6f

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

driver/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@
106106
<artifactId>neo4j</artifactId>
107107
<scope>test</scope>
108108
</dependency>
109+
<dependency>
110+
<groupId>commons-codec</groupId>
111+
<artifactId>commons-codec</artifactId>
112+
</dependency>
109113
<dependency>
110114
<groupId>org.reactivestreams</groupId>
111115
<artifactId>reactive-streams-tck</artifactId>

pom.xml

Lines changed: 9 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+
<!-- an optional dependency of commons-compress used by TarArchiveOutputStream -->
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,12 @@
180182
<version>${commons-compress.version}</version>
181183
<scope>test</scope>
182184
</dependency>
185+
<dependency>
186+
<groupId>commons-codec</groupId>
187+
<artifactId>commons-codec</artifactId>
188+
<version>${commons-codec.version}</version>
189+
<scope>test</scope>
190+
</dependency>
183191
<dependency>
184192
<groupId>org.bouncycastle</groupId>
185193
<artifactId>bcprov-jdk18on</artifactId>

0 commit comments

Comments
 (0)