Skip to content

Commit

Permalink
upgraded to 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pecollet committed Feb 9, 2021
1 parent 344e199 commit 6514476
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
17 changes: 14 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<version>1.0.1</version>

<properties>
<neo4j.version>4.1.3</neo4j.version>
<neo4j.version>4.2.2</neo4j.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!--suppress UnresolvedMavenProperty -->
<install.dir>${install_dir}</install.dir>
</properties>

<distributionManagement>
<repository>
<id>github</id>
Expand All @@ -24,6 +24,14 @@
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.neo4j.procedure</groupId>
<artifactId>apoc</artifactId>
<version>4.2.0.1</version>
<classifier>all</classifier>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
Expand Down Expand Up @@ -68,6 +76,9 @@
<version>3.8.1</version>
<configuration>
<release>11</release>
<compilerArgs>
<arg>-Xlint:deprecation</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
Expand All @@ -77,7 +88,7 @@
of each Neo4j instance in your deployment.
After a restart, the procedure is available for calling. -->
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<version>3.2.4</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<filters>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/neo4j/impact/Impact.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import org.neo4j.internal.helpers.collection.Pair;
import org.neo4j.logging.Log;
import org.neo4j.procedure.*;
import apoc.path.PathExplorer;

import java.util.*;
import java.util.stream.Stream;
Expand Down

0 comments on commit 6514476

Please sign in to comment.