Skip to content

Commit 50e8796

Browse files
committed
Add commons-codec 1.16.1 (neo4j#1539)
1 parent 72fb679 commit 50e8796

File tree

7 files changed

+24
-6
lines changed

7 files changed

+24
-6
lines changed

benchkit-backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>neo4j-java-driver-parent</artifactId>
99
<groupId>org.neo4j.driver</groupId>
10-
<version>5.15-SNAPSHOT</version>
10+
<version>5.17-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>benchkit-backend</artifactId>

bundle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.neo4j.driver</groupId>
88
<artifactId>neo4j-java-driver-parent</artifactId>
9-
<version>5.15-SNAPSHOT</version>
9+
<version>5.17-SNAPSHOT</version>
1010
<relativePath>..</relativePath>
1111
</parent>
1212

driver/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.neo4j.driver</groupId>
88
<artifactId>neo4j-java-driver-parent</artifactId>
9-
<version>5.15-SNAPSHOT</version>
9+
<version>5.17-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>neo4j-java-driver</artifactId>
@@ -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>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.neo4j.driver</groupId>
88
<artifactId>neo4j-java-driver-parent</artifactId>
9-
<version>5.15-SNAPSHOT</version>
9+
<version>5.17-SNAPSHOT</version>
1010
</parent>
1111

1212
<groupId>org.neo4j.doc.driver</groupId>

pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
<jarchivelib.version>1.2.0</jarchivelib.version>
5151
<!-- supply a newer version than the one supplied by the jarchivelib 1.2.0 -->
5252
<commons-compress.version>1.25.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.78.1</bouncycastle-jdk18on.version>
5456
<logback-classic.version>1.2.12</logback-classic.version>
5557
<jackson.version>2.17.2</jackson.version>
@@ -181,6 +183,12 @@
181183
<version>${commons-compress.version}</version>
182184
<scope>test</scope>
183185
</dependency>
186+
<dependency>
187+
<groupId>commons-codec</groupId>
188+
<artifactId>commons-codec</artifactId>
189+
<version>${commons-codec.version}</version>
190+
<scope>test</scope>
191+
</dependency>
184192
<dependency>
185193
<groupId>org.bouncycastle</groupId>
186194
<artifactId>bcprov-jdk18on</artifactId>
@@ -212,6 +220,12 @@
212220
<type>pom</type>
213221
<scope>import</scope>
214222
</dependency>
223+
<dependency>
224+
<groupId>com.tngtech.archunit</groupId>
225+
<artifactId>archunit-junit5</artifactId>
226+
<version>${archunit-junit5.version}</version>
227+
<scope>test</scope>
228+
</dependency>
215229

216230
<!-- Testkit Backend Dependencies -->
217231
<dependency>

testkit-backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>neo4j-java-driver-parent</artifactId>
99
<groupId>org.neo4j.driver</groupId>
10-
<version>5.15-SNAPSHOT</version>
10+
<version>5.17-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>testkit-backend</artifactId>

testkit-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.neo4j.driver</groupId>
88
<artifactId>neo4j-java-driver-parent</artifactId>
9-
<version>5.15-SNAPSHOT</version>
9+
<version>5.17-SNAPSHOT</version>
1010
<relativePath>..</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)