diff options
author | abatos <adrian.batos-parac@amdocs.com> | 2017-09-26 09:43:07 -0400 |
---|---|---|
committer | abatos <adrian.batos-parac@amdocs.com> | 2017-09-26 09:53:03 -0400 |
commit | 7b465fbe49eadf89ce16c7d8569ffed10ff95efd (patch) | |
tree | 95687beddd8be38c4c459af280c5c0bc2a0eddf0 /pom.xml | |
parent | 3c5418d9095c79c5840ed4ee789380fa6567ac72 (diff) |
Fix dependency issue on older version of Tinkerpop
Removed the explicit dependency on the older versions of the Tinkerpop
stack. This was causing problems with both the Titan and Janusgraph
implementations of the deployment.
Change-Id: I873ad3e9c92239774aa5ee30cf755700de52267b
Issue-ID: AAI-295
Signed-off-by: Adrian Batos <adrian.batos-parac@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 40 |
1 files changed, 19 insertions, 21 deletions
@@ -142,33 +142,31 @@ <version>2.2.0</version> </dependency> + <!-- AAI-CORE specific dependencies --> <dependency> <groupId>org.apache.tinkerpop</groupId> - <artifactId>gremlin-core</artifactId> - <version>3.0.1-incubating</version> - <exclusions> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>jcl-over-slf4j</artifactId> - </exclusion> - </exclusions> - </dependency> - - <!-- TEST Dependencies --> - - <dependency> + <artifactId>gremlin-core</artifactId> + <version>3.2.3</version> + <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>tinkergraph-gremlin</artifactId> - <version>3.0.1-incubating</version> - <scope>test</scope> + <version>3.2.3</version> + <scope>provided</scope> </dependency> - - <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> |