This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch TINKERPOP-1641 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 3eacbf22be3c012bc827930929f935bdf44015ba Author: Stephen Mallette <[email protected]> AuthorDate: Thu May 28 14:10:09 2020 -0400 TINKERPOP-1641 added exclusion for asm Kirby was conflicting with neo4j --- neo4j-gremlin/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/neo4j-gremlin/pom.xml b/neo4j-gremlin/pom.xml index a227e22..d9c959b 100644 --- a/neo4j-gremlin/pom.xml +++ b/neo4j-gremlin/pom.xml @@ -42,6 +42,13 @@ limitations under the License. <artifactId>gremlin-test</artifactId> <version>${project.version}</version> <scope>test</scope> + <!-- conflict from kirby --> + <exclusions> + <exclusion> + <groupId>org.ow2.asm</groupId> + <artifactId>asm</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId>
