This is an automated email from the ASF dual-hosted git repository. nixon pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit 581e7412021e1e5f23ede308826f3c7fc5296aa6 Author: chaitali borole <[email protected]> AuthorDate: Tue Dec 22 14:37:02 2020 +0530 ATLAS-4031 : Upgrade gremlin version to 3.4.8. Signed-off-by: nixonrodrigues <[email protected]> (cherry picked from commit a88e912dcd910aa9d0602ffe17cb0e4807d32363) --- graphdb/janus-hbase2/pom.xml | 24 ++++++++++++++++++++++++ graphdb/janus/pom.xml | 28 ++++++++++++++++++++++++++++ pom.xml | 2 +- 3 files changed, 53 insertions(+), 1 deletion(-) diff --git a/graphdb/janus-hbase2/pom.xml b/graphdb/janus-hbase2/pom.xml index c2f35ec..83765c8 100644 --- a/graphdb/janus-hbase2/pom.xml +++ b/graphdb/janus-hbase2/pom.xml @@ -40,6 +40,30 @@ <groupId>com.codahale.metrics</groupId> <artifactId>*</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-shaded</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-server</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-groovy</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-driver</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>tinkergraph-gremlin</artifactId> + </exclusion> </exclusions> </dependency> diff --git a/graphdb/janus/pom.xml b/graphdb/janus/pom.xml index 2eade40..4c10dab 100644 --- a/graphdb/janus/pom.xml +++ b/graphdb/janus/pom.xml @@ -79,6 +79,22 @@ <groupId>com.codahale.metrics</groupId> <artifactId>*</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-shaded</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-server</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-groovy</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-driver</artifactId> + </exclusion> </exclusions> </dependency> @@ -229,6 +245,18 @@ </dependency> <dependency> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>gremlin-groovy</artifactId> + <version>${tinkerpop.version}</version> + </dependency> + + <dependency> + <groupId>org.apache.tinkerpop</groupId> + <artifactId>tinkergraph-gremlin</artifactId> + <version>${tinkerpop.version}</version> + </dependency> + + <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </dependency> diff --git a/pom.xml b/pom.xml index 34fbe6f..a2d423d 100644 --- a/pom.xml +++ b/pom.xml @@ -745,7 +745,7 @@ <surefire.forkCount>2C</surefire.forkCount> <surefire.version>2.18.1</surefire.version> <testng.version>6.9.4</testng.version> - <tinkerpop.version>3.4.6</tinkerpop.version> + <tinkerpop.version>3.4.8</tinkerpop.version> <woodstox-core.version>5.0.3</woodstox-core.version> <zookeeper.version>3.4.6</zookeeper.version> </properties>
