Skip to content

Commit

Permalink
Ported to Neo4j 4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
craigtaverner committed Jan 15, 2022
1 parent c9d4409 commit 5b39906
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The algorithms are designed to be used in two ways:
* or as a set of procedures directly in a running Neo4j server

The built-in procedures can be used as examples if you wish to build your own.
Otherwise simply copy the file named something like `dist/target/spatial-algorithms-dist-0.2.5-neo4j-4.3.9.jar`
Otherwise simply copy the file named something like `dist/target/spatial-algorithms-dist-0.2.5-neo4j-4.4.3.jar`
into the plugins folder of your Neo4j installation.

## Using the library in your Java project with Maven ##
Expand Down Expand Up @@ -104,12 +104,12 @@ Add the following repositories and dependency to your project's pom.xml:
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-core</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-algo</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
</dependency>
~~~

Expand Down
2 changes: 1 addition & 1 deletion algo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-parent</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
</parent>

<artifactId>spatial-algorithms-algo</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions benchmarks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
<parent>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-parent</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
</parent>

<artifactId>spatial-algorithms-benchmarks</artifactId>
Expand Down Expand Up @@ -76,13 +76,13 @@ THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-neo4j</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-viewer</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-parent</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-parent</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
</parent>

<artifactId>spatial-algorithms-dist</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion neo4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-parent</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
</parent>

<artifactId>spatial-algorithms-neo4j</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-parent</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
<packaging>pom</packaging>
<name>Spatial Algorithms</name>
<description>Utilities and Algorithms for Spatial Analysis</description>
Expand All @@ -20,7 +20,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<neo4j.version>4.3.9</neo4j.version>
<neo4j.version>4.4.3</neo4j.version>
<jmh.version>1.19</jmh.version>
<javac.target>11</javac.target>
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
Expand Down
2 changes: 1 addition & 1 deletion viewer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.neo4j</groupId>
<artifactId>spatial-algorithms-parent</artifactId>
<version>0.2.5-neo4j-4.3.9</version>
<version>0.2.5-neo4j-4.4.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 5b39906

Please sign in to comment.