Skip to content

Commit

Permalink
Add commons-codec 1.16.1 (neo4j#1539)
Browse files Browse the repository at this point in the history
  • Loading branch information
injectives committed Jul 23, 2024
1 parent 72fb679 commit 50e8796
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 6 deletions.
2 changes: 1 addition & 1 deletion benchkit-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>neo4j-java-driver-parent</artifactId>
<groupId>org.neo4j.driver</groupId>
<version>5.15-SNAPSHOT</version>
<version>5.17-SNAPSHOT</version>
</parent>

<artifactId>benchkit-backend</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.neo4j.driver</groupId>
<artifactId>neo4j-java-driver-parent</artifactId>
<version>5.15-SNAPSHOT</version>
<version>5.17-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
6 changes: 5 additions & 1 deletion driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.neo4j.driver</groupId>
<artifactId>neo4j-java-driver-parent</artifactId>
<version>5.15-SNAPSHOT</version>
<version>5.17-SNAPSHOT</version>
</parent>

<artifactId>neo4j-java-driver</artifactId>
Expand Down Expand Up @@ -106,6 +106,10 @@
<artifactId>neo4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>org.reactivestreams</groupId>
<artifactId>reactive-streams-tck</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.neo4j.driver</groupId>
<artifactId>neo4j-java-driver-parent</artifactId>
<version>5.15-SNAPSHOT</version>
<version>5.17-SNAPSHOT</version>
</parent>

<groupId>org.neo4j.doc.driver</groupId>
Expand Down
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@
<jarchivelib.version>1.2.0</jarchivelib.version>
<!-- supply a newer version than the one supplied by the jarchivelib 1.2.0 -->
<commons-compress.version>1.25.0</commons-compress.version>
<!-- an optional dependency of commons-compress used by TarArchiveOutputStream -->
<commons-codec.version>1.16.1</commons-codec.version>
<bouncycastle-jdk18on.version>1.78.1</bouncycastle-jdk18on.version>
<logback-classic.version>1.2.12</logback-classic.version>
<jackson.version>2.17.2</jackson.version>
Expand Down Expand Up @@ -181,6 +183,12 @@
<version>${commons-compress.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons-codec.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
Expand Down Expand Up @@ -212,6 +220,12 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5</artifactId>
<version>${archunit-junit5.version}</version>
<scope>test</scope>
</dependency>

<!-- Testkit Backend Dependencies -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion testkit-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>neo4j-java-driver-parent</artifactId>
<groupId>org.neo4j.driver</groupId>
<version>5.15-SNAPSHOT</version>
<version>5.17-SNAPSHOT</version>
</parent>

<artifactId>testkit-backend</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion testkit-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.neo4j.driver</groupId>
<artifactId>neo4j-java-driver-parent</artifactId>
<version>5.15-SNAPSHOT</version>
<version>5.17-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down

0 comments on commit 50e8796

Please sign in to comment.