diff options
Diffstat (limited to 'aai-core/pom.xml')
-rw-r--r-- | aai-core/pom.xml | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/aai-core/pom.xml b/aai-core/pom.xml index 851275e5..065f22c4 100644 --- a/aai-core/pom.xml +++ b/aai-core/pom.xml @@ -50,6 +50,7 @@ <freemarker.version>2.3.21</freemarker.version> <activemq.version>5.15.3</activemq.version> <jacoco.line.coverage.limit>0.50</jacoco.line.coverage.limit> + <gremlin.version>3.2.2</gremlin.version> </properties> <profiles> <profile> @@ -421,9 +422,9 @@ <version>16.0</version> </dependency> <dependency> - <groupId>com.thinkaurelius.titan</groupId> - <artifactId>titan-core</artifactId> - <version>1.0.0</version> + <groupId>org.janusgraph</groupId> + <artifactId>janusgraph-core</artifactId> + <version>0.2.0</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> @@ -504,7 +505,12 @@ <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-core</artifactId> - <version>3.0.1-incubating</version> + <version>${gremlin.version}</version> + </dependency> + <dependency> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>tinkergraph-gremlin</artifactId> + <version>${gremlin.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> @@ -666,6 +672,11 @@ <artifactId>aai-client-loadbalancer</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-groovy</artifactId> + <version>${gremlin.version}</version> + </dependency> </dependencies> <!-- Plugins and repositories --> |