You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2020/05/28 18:13:54 UTC

[tinkerpop] 02/02: TINKERPOP-1641 added exclusion for asm

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 bd4bb5b80586d5e88aa529f7489c99a152b891f2
Author: Stephen Mallette <sp...@genoprime.com>
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>