Skip to content

Commit 39c65de

Browse files
committed
Updated for Neo4j 5.10 and bumped dependency versions
Updated for Neo4j 5.10 Bumped org.apache.commons.commons-lang3 to 3.13.0
1 parent dd1dfb6 commit 39c65de

File tree

3 files changed

+39
-11
lines changed

3 files changed

+39
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG - Neo4jH3
22

3+
## 5.10 2023-0809
4+
5+
* [Added] Tested through Neo4j 5.10
6+
* [Updated] Bumped org.apache.commons.commons-lang3 to 3.13.0
7+
38
## 5.8 2023-0519
49

510
* [Added] Tested through Neo4j 5.8

dependency-reduced-pom.xml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.neo4jh3</groupId>
55
<artifactId>neo4jh3</artifactId>
6-
<version>5.8.0</version>
6+
<version>5.10.0</version>
77
<build>
88
<plugins>
99
<plugin>
@@ -23,6 +23,18 @@
2323
<goals>
2424
<goal>shade</goal>
2525
</goals>
26+
<configuration>
27+
<filters>
28+
<filter>
29+
<artifact>*:*</artifact>
30+
<excludes>
31+
<exclude>META-INF/*.SF</exclude>
32+
<exclude>META-INF/*.DSA</exclude>
33+
<exclude>META-INF/*.RSA</exclude>
34+
</excludes>
35+
</filter>
36+
</filters>
37+
</configuration>
2638
</execution>
2739
</executions>
2840
</plugin>
@@ -43,7 +55,7 @@
4355
<dependency>
4456
<groupId>org.neo4j</groupId>
4557
<artifactId>neo4j</artifactId>
46-
<version>5.8.0</version>
58+
<version>5.10.0</version>
4759
<scope>provided</scope>
4860
<exclusions>
4961
<exclusion>
@@ -123,7 +135,7 @@
123135
<dependency>
124136
<groupId>org.neo4j.test</groupId>
125137
<artifactId>neo4j-harness</artifactId>
126-
<version>5.8.0</version>
138+
<version>5.10.0</version>
127139
<scope>test</scope>
128140
<exclusions>
129141
<exclusion>
@@ -159,7 +171,7 @@
159171
<dependency>
160172
<groupId>org.neo4j.driver</groupId>
161173
<artifactId>neo4j-java-driver</artifactId>
162-
<version>5.2.0</version>
174+
<version>5.9.0</version>
163175
<scope>test</scope>
164176
<exclusions>
165177
<exclusion>
@@ -194,10 +206,10 @@
194206
</dependency>
195207
</dependencies>
196208
<properties>
197-
<neo4j.version>5.8.0</neo4j.version>
209+
<neo4j.version>5.10.0</neo4j.version>
198210
<commons.version>4.1</commons.version>
199211
<csv.version>1.2</csv.version>
200-
<lang3.version>3.7</lang3.version>
212+
<lang3.version>3.13.0</lang3.version>
201213
<uber.version>4.1.1</uber.version>
202214
</properties>
203215
</project>

pom.xml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
<groupId>com.neo4jh3</groupId>
88
<artifactId>neo4jh3</artifactId>
9-
<version>5.8.0</version>
9+
<version>5.10.0</version>
1010

1111
<properties>
12-
<neo4j.version>5.8.0</neo4j.version>
12+
<neo4j.version>5.10.0</neo4j.version>
1313
<csv.version>1.2</csv.version>
14-
<lang3.version>3.7</lang3.version>
14+
<lang3.version>3.13.0</lang3.version>
1515
<uber.version>4.1.1</uber.version>
1616
<commons.version>4.1</commons.version>
1717
</properties>
@@ -60,7 +60,6 @@
6060
<version>3.3.1</version>
6161
</dependency>
6262

63-
6463
<!-- Test Dependencies -->
6564
<dependency>
6665
<!-- This is used for a utility that lets us start Neo4j with
@@ -75,7 +74,7 @@
7574
<!-- Used to send cypher statements to our procedure. -->
7675
<groupId>org.neo4j.driver</groupId>
7776
<artifactId>neo4j-java-driver</artifactId>
78-
<version>5.2.0</version>
77+
<version>5.9.0</version>
7978
<scope>test</scope>
8079
</dependency>
8180

@@ -143,6 +142,18 @@
143142
<goals>
144143
<goal>shade</goal>
145144
</goals>
145+
<configuration>
146+
<filters>
147+
<filter>
148+
<artifact>*:*</artifact>
149+
<excludes>
150+
<exclude>META-INF/*.SF</exclude>
151+
<exclude>META-INF/*.DSA</exclude>
152+
<exclude>META-INF/*.RSA</exclude>
153+
</excludes>
154+
</filter>
155+
</filters>
156+
</configuration>
146157
</execution>
147158
</executions>
148159
</plugin>

0 commit comments

Comments
 (0)