Skip to content

Commit 25b5b00

Browse files
authored
update dependencies (#399)
1 parent 3f83c28 commit 25b5b00

File tree

2 files changed

+26
-16
lines changed

2 files changed

+26
-16
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ This has meant that the spatial library needed a major refactoring to work with
5454
The removal of this support required that all internal API's needed to include parameters
5555
for the current transaction, and only the specific surface designed for embedded use not have that.
5656
* The library made use of Lucene based explicit indexes in many places.
57-
The removal of support for explicit indexes required completely new solutions in sevaral places:
57+
The removal of support for explicit indexes required completely new solutions in several places:
5858
* The `OSMImporter` will instead now use normal Neo4j schema indexes (introduced in 2.0).
5959
However, these can only be created in separate index transactions.
6060
Due to the new transaction model this requires stopping the import transaction,
@@ -129,7 +129,7 @@ The key concepts of this library include:
129129
* WKT and WKB stored as properties of nodes
130130
* Simple points as properties of nodes (two doubles, or a double[] or a native Neo4j `Point`)
131131
* OpenStreetMap with complex geometries stored as sub-graphs to reflect the original topology of the OSM model
132-
* Multile CoordinationReferenceSystem support using GeoTools
132+
* Multiple CoordinationReferenceSystem support using GeoTools
133133
* Support the concept of multiple geographic layers, each with its own CRS and Index
134134
* Include an index capable of searching for complex geometries (in-graph RTree index)
135135
* Support import and export in a number of known formats (e.g. Shapefile and OSM)
@@ -316,9 +316,9 @@ This has not been tested at all in any GeoTools enabled application, but could p
316316
* restart geoserver
317317
* configure a new workspace
318318
* configure a new datasource neo4j in your workspace. Point the "The directory path of the Neo4j database:" parameter to
319-
the relative (form the GeoServer working dir) or aboslute path to a Neo4j Spatial database with layers (
319+
the relative (form the GeoServer working dir) or absolute path to a Neo4j Spatial database with layers (
320320
see [Neo4j Spatial](https://github.com/neo4j/spatial))
321-
* in Layers, do "Add new resource" and choose your Neo4j datastore to see the exisitng Neo4j Spatial layers and add
321+
* in Layers, do "Add new resource" and choose your Neo4j datastore to see the existing Neo4j Spatial layers and add
322322
them.
323323

324324
### Testing in GeoServer trunk ###
@@ -537,7 +537,7 @@ at [Neo4j Spatial Releases](https://github.com/neo4j-contrib/m2/tree/master/rele
537537

538538
## Running Neo4j spatial code from the command-line ##
539539

540-
Some of the classes in Neoj4-Spatial include main() methods and can be run on the command-line.
540+
Some of the classes in Neo4j-Spatial include main() methods and can be run on the command-line.
541541
For example there are command-line options for importing SHP and OSM data. See the main methods
542542
in the OSMImporter and ShapefileImporter classes. Here we will describe how to set up the dependencies
543543
for running the command-line, using the OSMImporter and the sample OSM file two-street.osm.

pom.xml

+21-11
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
44
<properties>
5-
<neo4j.version>5.13.0</neo4j.version>
5+
<neo4j.version>5.19.0</neo4j.version>
66
<neo4j.java.version>17</neo4j.java.version>
77
<skinGroupId>org.neo4j.maven.skins</skinGroupId>
88
<skinArtifactId>default-skin</skinArtifactId>
99
<skinVersion>2</skinVersion>
10-
<geotools.version>30.0</geotools.version>
10+
<geotools.version>30.2</geotools.version>
1111
<spatial.test.osm.version>20100819</spatial.test.osm.version>
1212
<spatial.test.shp.version>20100819</spatial.test.shp.version>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
<bundle.namespace>org.neo4j.gis</bundle.namespace>
1515
<github.global.server>github</github.global.server>
16-
<junit.version>5.10.0</junit.version>
17-
<maven-surefire-plugin.version>3.2.1</maven-surefire-plugin.version>
16+
<junit.version>5.10.2</junit.version>
17+
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
1818
</properties>
1919

2020
<modelVersion>4.0.0</modelVersion>
2121
<artifactId>neo4j-spatial</artifactId>
2222
<groupId>org.neo4j</groupId>
23-
<version>0.30.0-neo4j-5.13.0</version>
23+
<version>0.31.0-neo4j-5.19.0</version>
2424
<name>Neo4j - Spatial Components</name>
2525
<description>Spatial utilities and components for Neo4j</description>
2626
<url>https://components.neo4j.org/${project.artifactId}/${project.version}</url>
@@ -287,7 +287,7 @@
287287
<dependency>
288288
<groupId>com.google.code.gson</groupId>
289289
<artifactId>gson</artifactId>
290-
<version>2.10.1</version>
290+
<version>2.11.0</version>
291291
<scope>test</scope>
292292
</dependency>
293293
<dependency>
@@ -396,17 +396,22 @@
396396
<dependency>
397397
<groupId>org.slf4j</groupId>
398398
<artifactId>slf4j-api</artifactId>
399-
<version>2.0.9</version>
399+
<version>2.0.13</version>
400400
</dependency>
401401
<dependency>
402402
<groupId>commons-io</groupId>
403403
<artifactId>commons-io</artifactId>
404-
<version>2.13.0</version>
404+
<version>2.16.1</version>
405405
</dependency>
406406
<dependency>
407407
<groupId>org.apache.commons</groupId>
408408
<artifactId>commons-lang3</artifactId>
409-
<version>3.13.0</version>
409+
<version>3.14.0</version>
410+
</dependency>
411+
<dependency>
412+
<groupId>com.fasterxml.jackson.core</groupId>
413+
<artifactId>jackson-databind</artifactId>
414+
<version>2.17.1</version>
410415
</dependency>
411416
<dependency>
412417
<groupId>jakarta.annotation</groupId>
@@ -426,18 +431,23 @@
426431
<dependency>
427432
<groupId>org.scala-lang</groupId>
428433
<artifactId>scala-library</artifactId>
429-
<version>2.13.11</version>
434+
<version>2.13.14</version>
430435
</dependency>
431436
<dependency>
432437
<groupId>javax.measure</groupId>
433438
<artifactId>unit-api</artifactId>
434-
<version>2.1.3</version>
439+
<version>2.1.2</version>
435440
</dependency>
436441
<dependency>
437442
<groupId>org.apiguardian</groupId>
438443
<artifactId>apiguardian-api</artifactId>
439444
<version>1.1.2</version>
440445
</dependency>
446+
<dependency>
447+
<groupId>com.google.errorprone</groupId>
448+
<artifactId>error_prone_annotations</artifactId>
449+
<version>2.27.0</version>
450+
</dependency>
441451
</dependencies>
442452
</dependencyManagement>
443453
<repositories>

0 commit comments

Comments
 (0)