TINKERPOP-1692 Cleaned up enforcer for neo4j
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/55c7e949
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/55c7e949
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/55c7e949
Branch: refs/heads/TINKERPOP-1692
Commit: 55c7e949a82d7b57f3920e8a788e8dd33998a8d9
Parents: 76e94cb
Author: Stephen Mallette <spmva@genoprime.com>
Authored: Mon Jul 24 11:56:56 2017 -0400
Committer: Robert Dale <robdale@gmail.com>
Committed: Sun Sep 3 00:45:53 2017 -0400
----------------------------------------------------------------------
neo4j-gremlin/pom.xml | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/55c7e949/neo4j-gremlin/pom.xml
----------------------------------------------------------------------
diff --git a/neo4j-gremlin/pom.xml b/neo4j-gremlin/pom.xml
index 8e50985..0e1f8c2 100644
--- a/neo4j-gremlin/pom.xml
+++ b/neo4j-gremlin/pom.xml
@@ -121,6 +121,10 @@ limitations under the License.
<scope>test</scope>
<exclusions>
<exclusion>
+ <groupId>org.neo4j</groupId>
+ <artifactId>neo4j-kernel</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</exclusion>
@@ -129,10 +133,6 @@ limitations under the License.
<artifactId>caffeine</artifactId>
</exclusion>
<exclusion>
- <groupId>org.neo4j</groupId>
- <artifactId>neo4j</artifactId>
- </exclusion>
- <exclusion>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
</exclusion>
@@ -164,9 +164,10 @@ limitations under the License.
<version>2.3.1</version>
<scope>test</scope>
</dependency>
+ <!-- self-conflict with neo4j-graph-matching -->
<dependency>
<groupId>org.neo4j</groupId>
- <artifactId>neo4j</artifactId>
+ <artifactId>neo4j-kernel</artifactId>
<version>3.2.2</version>
<scope>test</scope>
</dependency>
|