berkeleyje and lucene NoSuchMethodError


queshaw
 

Hi,


I hope this is an appropriate question. This is my first attempt to use janusgraph. I got extra dependencies from the 0.6.2 source, without lucene and berkeleyce were not found. I'm using jdk 1.8.2 for both building and running a test program. I get this error:


java.lang.NoSuchMethodError: org.apache.tinkerpop.gremlin.structure.util.CloseableIterator.asCloseable(Ljava/util/Iterator;)Lorg/apache/tinkerpop/gremlin/structure/util/CloseableIterator;

at org.janusgraph.graphdb.util.CloseableIteratorUtils.<clinit>(CloseableIteratorUtils.java:28)

at org.janusgraph.graphdb.query.graph.GraphCentricQueryBuilder.lambda$iterables$1(GraphCentricQueryBuilder.java:240)

at com.google.common.collect.Iterables.isEmpty(Iterables.java:988)

at org.janusgraph.graphdb.transaction.StandardJanusGraphTx.addProperty(StandardJanusGraphTx.java:915)

at org.janusgraph.graphdb.transaction.StandardJanusGraphTx.addProperty(StandardJanusGraphTx.java:838)

at org.janusgraph.graphdb.transaction.StandardJanusGraphTx.addProperty(StandardJanusGraphTx.java:834)

at org.janusgraph.graphdb.transaction.StandardJanusGraphTx.makeSchemaVertex(StandardJanusGraphTx.java:970)

at org.janusgraph.graphdb.transaction.StandardJanusGraphTx.makePropertyKey(StandardJanusGraphTx.java:989)

at org.janusgraph.graphdb.types.StandardPropertyKeyMaker.make(StandardPropertyKeyMaker.java:114)

at lnf.LoadGraph.load(LoadGraph.java:81)

at lnf.LoadGraph.go(LoadGraph.java:58)

at lnf.LoadGraph.main(LoadGraph.java:44)


The line in question is:


PropertyKey url = mgmt.makePropertyKey("url").dataType(String.class).make();


Do you have any idea what the problem could be?



hadoopmarc@...
 

Probably, janusgraph and tinkerpop versions got mixed up. If you use maven, can you show the janusgraph dependencies you used in the pom.xml (and tinkerpop if present in the pom.xml).

Best wishes,    Marc


queshaw
 

I am using gradle. The jars for lucene and and berkekeyje weren't installed in my local maven repository. So, my dependencies are:


jar files in my libs directory:


janusgraph-berkeleyje-0.6.2.jar

janusgraph-lucene-0.6.2.jar


then:


compileClasspath - Compile classpath for source set 'main'.

+--- org.janusgraph:janusgraph-core:0.6.2

|    +--- org.janusgraph:janusgraph-driver:0.6.2

|    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1

|    |    |    +--- org.apache.tinkerpop:gremlin-shaded:3.6.1

|    |    |    +--- org.apache.tinkerpop:gremlin-language:3.6.1

|    |    |    |    +--- org.antlr:antlr4-runtime:4.9.1

|    |    |    |    +--- org.javatuples:javatuples:1.2

|    |    |    |    \--- org.apache.commons:commons-text:1.9

|    |    |    |         \--- org.apache.commons:commons-lang3:3.11

|    |    |    +--- org.apache.commons:commons-configuration2:2.7

|    |    |    |    +--- org.apache.commons:commons-lang3:3.9 -> 3.11

|    |    |    |    +--- org.apache.commons:commons-text:1.8 -> 1.9 (*)

|    |    |    |    \--- commons-logging:commons-logging:1.2

|    |    |    +--- commons-beanutils:commons-beanutils:1.9.4

|    |    |    |    +--- commons-logging:commons-logging:1.2

|    |    |    |    \--- commons-collections:commons-collections:3.2.2

|    |    |    +--- commons-collections:commons-collections:3.2.2

|    |    |    +--- org.apache.commons:commons-lang3:3.11

|    |    |    +--- org.yaml:snakeyaml:1.27

|    |    |    +--- com.carrotsearch:hppc:0.7.1 -> 0.8.2

|    |    |    +--- com.jcabi:jcabi-manifests:1.2.1

|    |    |    |    \--- com.jcabi:jcabi-log:0.20.0

|    |    |    |         \--- org.mockito:mockito-core:3.4.6

|    |    |    |              +--- net.bytebuddy:byte-buddy:1.10.13

|    |    |    |              +--- net.bytebuddy:byte-buddy-agent:1.10.13

|    |    |    |              \--- org.objenesis:objenesis:2.6

|    |    |    +--- net.objecthunter:exp4j:0.4.8

|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30

|    |    |    \--- org.slf4j:jcl-over-slf4j:1.7.25

|    |    |         \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30

|    |    +--- org.apache.tinkerpop:gremlin-driver:3.5.3 -> 3.6.1

|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)

|    |    |    +--- io.netty:netty-all:4.1.77.Final

|    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-dns:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-haproxy:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-http:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-http2:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-memcache:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-mqtt:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-redis:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-smtp:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-socks:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-stomp:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-xml:4.1.77.Final

|    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    +--- io.netty:netty-handler:4.1.77.Final

|    |    |    |    +--- io.netty:netty-handler-proxy:4.1.77.Final

|    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final

|    |    |    |    +--- io.netty:netty-resolver-dns:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport-rxtx:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport-sctp:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport-udt:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport-classes-epoll:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport-classes-kqueue:4.1.77.Final

|    |    |    |    \--- io.netty:netty-resolver-dns-classes-macos:4.1.77.Final

|    |    |    \--- org.apache.commons:commons-lang3:3.11

|    |    +--- org.apache.tinkerpop:gremlin-groovy:3.5.3

|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1 (*)

|    |    |    +--- org.apache.ivy:ivy:2.4.0

|    |    |    +--- org.codehaus.groovy:groovy:2.5.14

|    |    |    +--- org.codehaus.groovy:groovy-groovysh:2.5.14

|    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14

|    |    |    |    |    \--- info.picocli:picocli:4.3.2

|    |    |    |    +--- org.codehaus.groovy:groovy-console:2.5.14

|    |    |    |    |    +--- org.codehaus.groovy:groovy-templates:2.5.14

|    |    |    |    |    |    \--- org.codehaus.groovy:groovy-xml:2.5.14

|    |    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14 (*)

|    |    |    |    |    \--- org.codehaus.groovy:groovy-swing:2.5.14

|    |    |    |    \--- jline:jline:2.14.6

|    |    |    +--- org.codehaus.groovy:groovy-json:2.5.14

|    |    |    +--- org.codehaus.groovy:groovy-jsr223:2.5.14

|    |    |    +--- org.apache.commons:commons-lang3:3.11

|    |    |    +--- org.mindrot:jbcrypt:0.4

|    |    |    \--- com.github.ben-manes.caffeine:caffeine:2.3.1

|    |    +--- com.google.guava:guava:29.0-jre

|    |    |    +--- com.google.guava:failureaccess:1.0.1

|    |    |    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava

|    |    |    +--- com.google.code.findbugs:jsr305:3.0.2

|    |    |    +--- org.checkerframework:checker-qual:2.11.1

|    |    |    +--- com.google.errorprone:error_prone_annotations:2.3.4

|    |    |    \--- com.google.j2objc:j2objc-annotations:1.3

|    |    +--- org.noggit:noggit:0.8

|    |    +--- org.locationtech.spatial4j:spatial4j:0.8

|    |    +--- org.locationtech.jts:jts-core:1.17.0

|    |    +--- org.apache.commons:commons-text:1.9 (*)

|    |    \--- org.slf4j:slf4j-api:1.7.30

|    +--- org.apache.tinkerpop:tinkergraph-gremlin:3.5.3 -> 3.6.1

|    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)

|    |    \--- org.apache.commons:commons-lang3:3.11

|    +--- org.glassfish:javax.json:1.1.4

|    +--- io.dropwizard.metrics:metrics-core:4.1.18

|    |    \--- org.slf4j:slf4j-api:1.7.30

|    +--- io.dropwizard.metrics:metrics-graphite:4.1.18

|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)

|    |    +--- com.rabbitmq:amqp-client:5.11.0

|    |    \--- org.slf4j:slf4j-api:1.7.30

|    +--- io.dropwizard.metrics:metrics-jmx:4.1.18

|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)

|    |    \--- org.slf4j:slf4j-api:1.7.30

|    +--- net.oneandone.reflections8:reflections8:0.11.7

|    |    \--- org.javassist:javassist:3.22.0-GA

|    +--- commons-collections:commons-collections:3.2.2

|    +--- commons-configuration:commons-configuration:1.10

|    |    +--- commons-lang:commons-lang:2.6

|    |    \--- commons-logging:commons-logging:1.1.1 -> 1.2

|    +--- org.apache.commons:commons-configuration2:2.7 (*)

|    +--- commons-io:commons-io:2.8.0

|    +--- commons-codec:commons-codec:1.15

|    +--- com.carrotsearch:hppc:0.8.2

|    +--- com.boundary:high-scale-lib:1.0.6

|    +--- com.google.code.findbugs:jsr305:3.0.2

|    \--- org.slf4j:slf4j-api:1.7.30

+--- com.sleepycat:je:18.3.12

+--- org.apache.lucene:lucene-core:7.7.2

+--- org.apache.lucene:lucene-analyzers-common:7.7.2

|    \--- org.apache.lucene:lucene-core:7.7.2

+--- org.apache.lucene:lucene-queryparser:7.7.2

|    +--- org.apache.lucene:lucene-core:7.7.2

|    +--- org.apache.lucene:lucene-queries:7.7.2

|    \--- org.apache.lucene:lucene-sandbox:7.7.2

+--- org.apache.lucene:lucene-spatial:7.7.2

|    \--- org.apache.lucene:lucene-core:7.7.2

+--- org.apache.lucene:lucene-spatial-extras:7.7.2

|    +--- org.apache.lucene:lucene-core:7.7.2

|    +--- org.apache.lucene:lucene-spatial3d:7.7.2

|    +--- io.sgr:s2-geometry-library-java:1.0.0

|    \--- org.locationtech.spatial4j:spatial4j:0.7 -> 0.8

+--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)

+--- org.apache.tinkerpop:gremlin-driver:3.6.1 (*)

\--- org.apache.tinkerpop:tinkergraph-gremlin:3.6.1 (*)


compileOnly - Compile only dependencies for source set 'main'. (n)

No dependencies


default - Configuration for default artifacts. (n)

No dependencies


implementation - Implementation only dependencies for source set 'main'. (n)

+--- org.janusgraph:janusgraph-core:0.6.2 (n)

+--- unspecified (n)

+--- com.sleepycat:je:18.3.12 (n)

+--- org.apache.lucene:lucene-core:7.7.2 (n)

+--- org.apache.lucene:lucene-analyzers-common:7.7.2 (n)

+--- org.apache.lucene:lucene-queryparser:7.7.2 (n)

+--- org.apache.lucene:lucene-spatial:7.7.2 (n)

+--- org.apache.lucene:lucene-spatial-extras:7.7.2 (n)

+--- org.apache.tinkerpop:gremlin-core:3.6.1 (n)

+--- org.apache.tinkerpop:gremlin-driver:3.6.1 (n)

\--- org.apache.tinkerpop:tinkergraph-gremlin:3.6.1 (n)


mainSourceElements - List of source directories contained in the Main SourceSet. (n)

No dependencies


runtimeClasspath - Runtime classpath of source set 'main'.

+--- org.janusgraph:janusgraph-core:0.6.2

|    +--- org.janusgraph:janusgraph-driver:0.6.2

|    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1

|    |    |    +--- org.apache.tinkerpop:gremlin-shaded:3.6.1

|    |    |    +--- org.apache.tinkerpop:gremlin-language:3.6.1

|    |    |    |    +--- org.antlr:antlr4-runtime:4.9.1

|    |    |    |    +--- org.javatuples:javatuples:1.2

|    |    |    |    \--- org.apache.commons:commons-text:1.9

|    |    |    |         \--- org.apache.commons:commons-lang3:3.11

|    |    |    +--- org.apache.commons:commons-configuration2:2.7

|    |    |    |    +--- org.apache.commons:commons-lang3:3.9 -> 3.11

|    |    |    |    +--- org.apache.commons:commons-text:1.8 -> 1.9 (*)

|    |    |    |    \--- commons-logging:commons-logging:1.2

|    |    |    +--- commons-beanutils:commons-beanutils:1.9.4

|    |    |    |    +--- commons-logging:commons-logging:1.2

|    |    |    |    \--- commons-collections:commons-collections:3.2.2

|    |    |    +--- commons-collections:commons-collections:3.2.2

|    |    |    +--- org.apache.commons:commons-lang3:3.11

|    |    |    +--- org.yaml:snakeyaml:1.27

|    |    |    +--- com.carrotsearch:hppc:0.7.1 -> 0.8.2

|    |    |    +--- com.jcabi:jcabi-manifests:1.2.1

|    |    |    |    \--- com.jcabi:jcabi-log:0.20.0

|    |    |    |         \--- org.mockito:mockito-core:3.4.6

|    |    |    |              +--- net.bytebuddy:byte-buddy:1.10.13

|    |    |    |              +--- net.bytebuddy:byte-buddy-agent:1.10.13

|    |    |    |              \--- org.objenesis:objenesis:2.6

|    |    |    +--- net.objecthunter:exp4j:0.4.8

|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30

|    |    |    \--- org.slf4j:jcl-over-slf4j:1.7.25

|    |    |         \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30

|    |    +--- org.apache.tinkerpop:gremlin-driver:3.5.3 -> 3.6.1

|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)

|    |    |    +--- io.netty:netty-all:4.1.77.Final

|    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final

|    |    |    |    |    \--- io.netty:netty-common:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |    \--- io.netty:netty-transport:4.1.77.Final

|    |    |    |    |         +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |         +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |         \--- io.netty:netty-resolver:4.1.77.Final

|    |    |    |    |              \--- io.netty:netty-common:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-dns:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)

|    |    |    |    |    \--- io.netty:netty-codec:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-codec-haproxy:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-http:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-http2:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-memcache:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-mqtt:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-redis:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-smtp:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-socks:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-stomp:4.1.77.Final

|    |    |    |    +--- io.netty:netty-codec-xml:4.1.77.Final

|    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    +--- io.netty:netty-handler:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)

|    |    |    |    |    \--- io.netty:netty-codec:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-handler-proxy:4.1.77.Final

|    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-resolver-dns:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-codec:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-codec-dns:4.1.77.Final (*)

|    |    |    |    |    \--- io.netty:netty-handler:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-transport-rxtx:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport-sctp:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport-udt:4.1.77.Final

|    |    |    |    +--- io.netty:netty-transport-classes-epoll:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)

|    |    |    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.77.Final

|    |    |    |    |         +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |         +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |         \--- io.netty:netty-transport:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-transport-classes-kqueue:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)

|    |    |    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-resolver-dns-classes-macos:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-resolver-dns:4.1.77.Final (*)

|    |    |    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-transport-native-epoll:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)

|    |    |    |    |    \--- io.netty:netty-transport-classes-epoll:4.1.77.Final (*)

|    |    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final

|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)

|    |    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)

|    |    |    |    |    \--- io.netty:netty-transport-classes-kqueue:4.1.77.Final (*)

|    |    |    |    \--- io.netty:netty-resolver-dns-native-macos:4.1.77.Final

|    |    |    |         \--- io.netty:netty-resolver-dns-classes-macos:4.1.77.Final (*)

|    |    |    \--- org.apache.commons:commons-lang3:3.11

|    |    +--- org.apache.tinkerpop:gremlin-groovy:3.5.3

|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1 (*)

|    |    |    +--- org.apache.ivy:ivy:2.4.0

|    |    |    +--- org.codehaus.groovy:groovy:2.5.14

|    |    |    +--- org.codehaus.groovy:groovy-groovysh:2.5.14

|    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14

|    |    |    |    |    \--- info.picocli:picocli:4.3.2

|    |    |    |    +--- org.codehaus.groovy:groovy-console:2.5.14

|    |    |    |    |    +--- org.codehaus.groovy:groovy-templates:2.5.14

|    |    |    |    |    |    \--- org.codehaus.groovy:groovy-xml:2.5.14

|    |    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14 (*)

|    |    |    |    |    \--- org.codehaus.groovy:groovy-swing:2.5.14

|    |    |    |    \--- jline:jline:2.14.6

|    |    |    +--- org.codehaus.groovy:groovy-json:2.5.14

|    |    |    +--- org.codehaus.groovy:groovy-jsr223:2.5.14

|    |    |    +--- org.apache.commons:commons-lang3:3.11

|    |    |    +--- org.mindrot:jbcrypt:0.4

|    |    |    \--- com.github.ben-manes.caffeine:caffeine:2.3.1

|    |    +--- com.google.guava:guava:29.0-jre

|    |    |    +--- com.google.guava:failureaccess:1.0.1

|    |    |    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava

|    |    |    +--- com.google.code.findbugs:jsr305:3.0.2

|    |    |    +--- org.checkerframework:checker-qual:2.11.1

|    |    |    +--- com.google.errorprone:error_prone_annotations:2.3.4

|    |    |    \--- com.google.j2objc:j2objc-annotations:1.3

|    |    +--- org.noggit:noggit:0.8

|    |    +--- org.locationtech.spatial4j:spatial4j:0.8

|    |    +--- org.locationtech.jts:jts-core:1.17.0

|    |    +--- org.apache.commons:commons-text:1.9 (*)

|    |    \--- org.slf4j:slf4j-api:1.7.30

|    +--- org.apache.tinkerpop:tinkergraph-gremlin:3.5.3 -> 3.6.1

|    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)

|    |    \--- org.apache.commons:commons-lang3:3.11

|    +--- org.glassfish:javax.json:1.1.4

|    +--- io.dropwizard.metrics:metrics-core:4.1.18

|    |    \--- org.slf4j:slf4j-api:1.7.30

|    +--- io.dropwizard.metrics:metrics-graphite:4.1.18

|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)

|    |    +--- com.rabbitmq:amqp-client:5.11.0

|    |    \--- org.slf4j:slf4j-api:1.7.30

|    +--- io.dropwizard.metrics:metrics-jmx:4.1.18

|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)

|    |    \--- org.slf4j:slf4j-api:1.7.30

|    +--- net.oneandone.reflections8:reflections8:0.11.7

|    |    \--- org.javassist:javassist:3.22.0-GA

|    +--- commons-collections:commons-collections:3.2.2

|    +--- commons-configuration:commons-configuration:1.10

|    |    +--- commons-lang:commons-lang:2.6

|    |    \--- commons-logging:commons-logging:1.1.1 -> 1.2

|    +--- org.apache.commons:commons-configuration2:2.7 (*)

|    +--- commons-io:commons-io:2.8.0

|    +--- commons-codec:commons-codec:1.15

|    +--- com.carrotsearch:hppc:0.8.2

|    +--- com.boundary:high-scale-lib:1.0.6

|    +--- com.google.code.findbugs:jsr305:3.0.2

|    \--- org.slf4j:slf4j-api:1.7.30

+--- com.sleepycat:je:18.3.12

+--- org.apache.lucene:lucene-core:7.7.2

+--- org.apache.lucene:lucene-analyzers-common:7.7.2

|    \--- org.apache.lucene:lucene-core:7.7.2

+--- org.apache.lucene:lucene-queryparser:7.7.2

|    +--- org.apache.lucene:lucene-core:7.7.2

|    +--- org.apache.lucene:lucene-queries:7.7.2

|    \--- org.apache.lucene:lucene-sandbox:7.7.2

+--- org.apache.lucene:lucene-spatial:7.7.2

|    \--- org.apache.lucene:lucene-core:7.7.2

+--- org.apache.lucene:lucene-spatial-extras:7.7.2

|    +--- org.apache.lucene:lucene-core:7.7.2

|    +--- org.apache.lucene:lucene-spatial3d:7.7.2

|    +--- io.sgr:s2-geometry-library-java:1.0.0

|    \--- org.locationtech.spatial4j:spatial4j:0.7 -> 0.8

+--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)

+--- org.apache.tinkerpop:gremlin-driver:3.6.1 (*)

\--- org.apache.tinkerpop:tinkergraph-gremlin:3.6.1 (*)


runtimeElements - Elements of runtime for main. (n)

No dependencies


runtimeOnly - Runtime only dependencies for source set 'main'. (n)

No dependencies


Thanks


On Monday, August 22, 2022 8:24 AM, hadoopmarc@... wrote:

Probably, janusgraph and tinkerpop versions got mixed up. If you use maven, can you show the janusgraph dependencies you used in the pom.xml (and tinkerpop if present in the pom.xml).

Best wishes,    Marc



Boxuan Li
 

Janusgraph 0.6.2 ships with TinkerPop 3.5.3: https://docs.janusgraph.org/changelog/#version-062-release-date-may-31-2022

It seems you introduced TinkerPop 3.6.1 which is not compatible with JanusGraph 0.6.2.

On Aug 23, 2022, at 1:28 AM, queshaw via lists.lfaidata.foundation <queshaw=use.startmail.com@...> wrote:

I am using gradle. The jars for lucene and and berkekeyje weren't installed in my local maven repository. So, my dependencies are:

jar files in my libs directory:

janusgraph-berkeleyje-0.6.2.jar
janusgraph-lucene-0.6.2.jar

then:

compileClasspath - Compile classpath for source set 'main'.
+--- org.janusgraph:janusgraph-core:0.6.2
|    +--- org.janusgraph:janusgraph-driver:0.6.2
|    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-shaded:3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-language:3.6.1
|    |    |    |    +--- org.antlr:antlr4-runtime:4.9.1
|    |    |    |    +--- org.javatuples:javatuples:1.2
|    |    |    |    \--- org.apache.commons:commons-text:1.9
|    |    |    |         \--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.apache.commons:commons-configuration2:2.7
|    |    |    |    +--- org.apache.commons:commons-lang3:3.9 -> 3.11
|    |    |    |    +--- org.apache.commons:commons-text:1.8 -> 1.9 (*)
|    |    |    |    \--- commons-logging:commons-logging:1.2
|    |    |    +--- commons-beanutils:commons-beanutils:1.9.4
|    |    |    |    +--- commons-logging:commons-logging:1.2
|    |    |    |    \--- commons-collections:commons-collections:3.2.2
|    |    |    +--- commons-collections:commons-collections:3.2.2
|    |    |    +--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.yaml:snakeyaml:1.27
|    |    |    +--- com.carrotsearch:hppc:0.7.1 -> 0.8.2
|    |    |    +--- com.jcabi:jcabi-manifests:1.2.1
|    |    |    |    \--- com.jcabi:jcabi-log:0.20.0
|    |    |    |         \--- org.mockito:mockito-core:3.4.6
|    |    |    |              +--- net.bytebuddy:byte-buddy:1.10.13
|    |    |    |              +--- net.bytebuddy:byte-buddy-agent:1.10.13
|    |    |    |              \--- org.objenesis:objenesis:2.6
|    |    |    +--- net.objecthunter:exp4j:0.4.8
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    \--- org.slf4j:jcl-over-slf4j:1.7.25
|    |    |         \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.apache.tinkerpop:gremlin-driver:3.5.3 -> 3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
|    |    |    +--- io.netty:netty-all:4.1.77.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-dns:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-haproxy:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-http:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-http2:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-memcache:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-mqtt:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-redis:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-smtp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-socks:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-stomp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-xml:4.1.77.Final
|    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-handler:4.1.77.Final
|    |    |    |    +--- io.netty:netty-handler-proxy:4.1.77.Final
|    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final
|    |    |    |    +--- io.netty:netty-resolver-dns:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-rxtx:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-sctp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-udt:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-classes-epoll:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-classes-kqueue:4.1.77.Final
|    |    |    |    \--- io.netty:netty-resolver-dns-classes-macos:4.1.77.Final
|    |    |    \--- org.apache.commons:commons-lang3:3.11
|    |    +--- org.apache.tinkerpop:gremlin-groovy:3.5.3
|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1 (*)
|    |    |    +--- org.apache.ivy:ivy:2.4.0
|    |    |    +--- org.codehaus.groovy:groovy:2.5.14
|    |    |    +--- org.codehaus.groovy:groovy-groovysh:2.5.14
|    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14
|    |    |    |    |    \--- info.picocli:picocli:4.3.2
|    |    |    |    +--- org.codehaus.groovy:groovy-console:2.5.14
|    |    |    |    |    +--- org.codehaus.groovy:groovy-templates:2.5.14
|    |    |    |    |    |    \--- org.codehaus.groovy:groovy-xml:2.5.14
|    |    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14 (*)
|    |    |    |    |    \--- org.codehaus.groovy:groovy-swing:2.5.14
|    |    |    |    \--- jline:jline:2.14.6
|    |    |    +--- org.codehaus.groovy:groovy-json:2.5.14
|    |    |    +--- org.codehaus.groovy:groovy-jsr223:2.5.14
|    |    |    +--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.mindrot:jbcrypt:0.4
|    |    |    \--- com.github.ben-manes.caffeine:caffeine:2.3.1
|    |    +--- com.google.guava:guava:29.0-jre
|    |    |    +--- com.google.guava:failureaccess:1.0.1
|    |    |    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    |    |    +--- com.google.code.findbugs:jsr305:3.0.2
|    |    |    +--- org.checkerframework:checker-qual:2.11.1
|    |    |    +--- com.google.errorprone:error_prone_annotations:2.3.4
|    |    |    \--- com.google.j2objc:j2objc-annotations:1.3
|    |    +--- org.noggit:noggit:0.8
|    |    +--- org.locationtech.spatial4j:spatial4j:0.8
|    |    +--- org.locationtech.jts:jts-core:1.17.0
|    |    +--- org.apache.commons:commons-text:1.9 (*)
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- org.apache.tinkerpop:tinkergraph-gremlin:3.5.3 -> 3.6.1
|    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
|    |    \--- org.apache.commons:commons-lang3:3.11
|    +--- org.glassfish:javax.json:1.1.4
|    +--- io.dropwizard.metrics:metrics-core:4.1.18
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- io.dropwizard.metrics:metrics-graphite:4.1.18
|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)
|    |    +--- com.rabbitmq:amqp-client:5.11.0
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- io.dropwizard.metrics:metrics-jmx:4.1.18
|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- net.oneandone.reflections8:reflections8:0.11.7
|    |    \--- org.javassist:javassist:3.22.0-GA
|    +--- commons-collections:commons-collections:3.2.2
|    +--- commons-configuration:commons-configuration:1.10
|    |    +--- commons-lang:commons-lang:2.6
|    |    \--- commons-logging:commons-logging:1.1.1 -> 1.2
|    +--- org.apache.commons:commons-configuration2:2.7 (*)
|    +--- commons-io:commons-io:2.8.0
|    +--- commons-codec:commons-codec:1.15
|    +--- com.carrotsearch:hppc:0.8.2
|    +--- com.boundary:high-scale-lib:1.0.6
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.sleepycat:je:18.3.12
+--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-analyzers-common:7.7.2
|    \--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-queryparser:7.7.2
|    +--- org.apache.lucene:lucene-core:7.7.2
|    +--- org.apache.lucene:lucene-queries:7.7.2
|    \--- org.apache.lucene:lucene-sandbox:7.7.2
+--- org.apache.lucene:lucene-spatial:7.7.2
|    \--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-spatial-extras:7.7.2
|    +--- org.apache.lucene:lucene-core:7.7.2
|    +--- org.apache.lucene:lucene-spatial3d:7.7.2
|    +--- io.sgr:s2-geometry-library-java:1.0.0
|    \--- org.locationtech.spatial4j:spatial4j:0.7 -> 0.8
+--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
+--- org.apache.tinkerpop:gremlin-driver:3.6.1 (*)
\--- org.apache.tinkerpop:tinkergraph-gremlin:3.6.1 (*)

compileOnly - Compile only dependencies for source set 'main'. (n)
No dependencies

default - Configuration for default artifacts. (n)
No dependencies

implementation - Implementation only dependencies for source set 'main'. (n)
+--- org.janusgraph:janusgraph-core:0.6.2 (n)
+--- unspecified (n)
+--- com.sleepycat:je:18.3.12 (n)
+--- org.apache.lucene:lucene-core:7.7.2 (n)
+--- org.apache.lucene:lucene-analyzers-common:7.7.2 (n)
+--- org.apache.lucene:lucene-queryparser:7.7.2 (n)
+--- org.apache.lucene:lucene-spatial:7.7.2 (n)
+--- org.apache.lucene:lucene-spatial-extras:7.7.2 (n)
+--- org.apache.tinkerpop:gremlin-core:3.6.1 (n)
+--- org.apache.tinkerpop:gremlin-driver:3.6.1 (n)
\--- org.apache.tinkerpop:tinkergraph-gremlin:3.6.1 (n)

mainSourceElements - List of source directories contained in the Main SourceSet. (n)
No dependencies

runtimeClasspath - Runtime classpath of source set 'main'.
+--- org.janusgraph:janusgraph-core:0.6.2
|    +--- org.janusgraph:janusgraph-driver:0.6.2
|    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-shaded:3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-language:3.6.1
|    |    |    |    +--- org.antlr:antlr4-runtime:4.9.1
|    |    |    |    +--- org.javatuples:javatuples:1.2
|    |    |    |    \--- org.apache.commons:commons-text:1.9
|    |    |    |         \--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.apache.commons:commons-configuration2:2.7
|    |    |    |    +--- org.apache.commons:commons-lang3:3.9 -> 3.11
|    |    |    |    +--- org.apache.commons:commons-text:1.8 -> 1.9 (*)
|    |    |    |    \--- commons-logging:commons-logging:1.2
|    |    |    +--- commons-beanutils:commons-beanutils:1.9.4
|    |    |    |    +--- commons-logging:commons-logging:1.2
|    |    |    |    \--- commons-collections:commons-collections:3.2.2
|    |    |    +--- commons-collections:commons-collections:3.2.2
|    |    |    +--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.yaml:snakeyaml:1.27
|    |    |    +--- com.carrotsearch:hppc:0.7.1 -> 0.8.2
|    |    |    +--- com.jcabi:jcabi-manifests:1.2.1
|    |    |    |    \--- com.jcabi:jcabi-log:0.20.0
|    |    |    |         \--- org.mockito:mockito-core:3.4.6
|    |    |    |              +--- net.bytebuddy:byte-buddy:1.10.13
|    |    |    |              +--- net.bytebuddy:byte-buddy-agent:1.10.13
|    |    |    |              \--- org.objenesis:objenesis:2.6
|    |    |    +--- net.objecthunter:exp4j:0.4.8
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    \--- org.slf4j:jcl-over-slf4j:1.7.25
|    |    |         \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.apache.tinkerpop:gremlin-driver:3.5.3 -> 3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
|    |    |    +--- io.netty:netty-all:4.1.77.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final
|    |    |    |    |    \--- io.netty:netty-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport:4.1.77.Final
|    |    |    |    |         +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |         +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |         \--- io.netty:netty-resolver:4.1.77.Final
|    |    |    |    |              \--- io.netty:netty-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-dns:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-codec:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-codec-haproxy:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-http:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-http2:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-memcache:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-mqtt:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-redis:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-smtp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-socks:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-stomp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-xml:4.1.77.Final
|    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-handler:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-codec:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-handler-proxy:4.1.77.Final
|    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-resolver-dns:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-codec:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-codec-dns:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-handler:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-rxtx:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-sctp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-udt:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-classes-epoll:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.77.Final
|    |    |    |    |         +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |         +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |         \--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-classes-kqueue:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-resolver-dns-classes-macos:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-resolver-dns:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-native-epoll:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-classes-epoll:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-classes-kqueue:4.1.77.Final (*)
|    |    |    |    \--- io.netty:netty-resolver-dns-native-macos:4.1.77.Final
|    |    |    |         \--- io.netty:netty-resolver-dns-classes-macos:4.1.77.Final (*)
|    |    |    \--- org.apache.commons:commons-lang3:3.11
|    |    +--- org.apache.tinkerpop:gremlin-groovy:3.5.3
|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1 (*)
|    |    |    +--- org.apache.ivy:ivy:2.4.0
|    |    |    +--- org.codehaus.groovy:groovy:2.5.14
|    |    |    +--- org.codehaus.groovy:groovy-groovysh:2.5.14
|    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14
|    |    |    |    |    \--- info.picocli:picocli:4.3.2
|    |    |    |    +--- org.codehaus.groovy:groovy-console:2.5.14
|    |    |    |    |    +--- org.codehaus.groovy:groovy-templates:2.5.14
|    |    |    |    |    |    \--- org.codehaus.groovy:groovy-xml:2.5.14
|    |    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14 (*)
|    |    |    |    |    \--- org.codehaus.groovy:groovy-swing:2.5.14
|    |    |    |    \--- jline:jline:2.14.6
|    |    |    +--- org.codehaus.groovy:groovy-json:2.5.14
|    |    |    +--- org.codehaus.groovy:groovy-jsr223:2.5.14
|    |    |    +--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.mindrot:jbcrypt:0.4
|    |    |    \--- com.github.ben-manes.caffeine:caffeine:2.3.1
|    |    +--- com.google.guava:guava:29.0-jre
|    |    |    +--- com.google.guava:failureaccess:1.0.1
|    |    |    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    |    |    +--- com.google.code.findbugs:jsr305:3.0.2
|    |    |    +--- org.checkerframework:checker-qual:2.11.1
|    |    |    +--- com.google.errorprone:error_prone_annotations:2.3.4
|    |    |    \--- com.google.j2objc:j2objc-annotations:1.3
|    |    +--- org.noggit:noggit:0.8
|    |    +--- org.locationtech.spatial4j:spatial4j:0.8
|    |    +--- org.locationtech.jts:jts-core:1.17.0
|    |    +--- org.apache.commons:commons-text:1.9 (*)
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- org.apache.tinkerpop:tinkergraph-gremlin:3.5.3 -> 3.6.1
|    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
|    |    \--- org.apache.commons:commons-lang3:3.11
|    +--- org.glassfish:javax.json:1.1.4
|    +--- io.dropwizard.metrics:metrics-core:4.1.18
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- io.dropwizard.metrics:metrics-graphite:4.1.18
|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)
|    |    +--- com.rabbitmq:amqp-client:5.11.0
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- io.dropwizard.metrics:metrics-jmx:4.1.18
|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- net.oneandone.reflections8:reflections8:0.11.7
|    |    \--- org.javassist:javassist:3.22.0-GA
|    +--- commons-collections:commons-collections:3.2.2
|    +--- commons-configuration:commons-configuration:1.10
|    |    +--- commons-lang:commons-lang:2.6
|    |    \--- commons-logging:commons-logging:1.1.1 -> 1.2
|    +--- org.apache.commons:commons-configuration2:2.7 (*)
|    +--- commons-io:commons-io:2.8.0
|    +--- commons-codec:commons-codec:1.15
|    +--- com.carrotsearch:hppc:0.8.2
|    +--- com.boundary:high-scale-lib:1.0.6
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.sleepycat:je:18.3.12
+--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-analyzers-common:7.7.2
|    \--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-queryparser:7.7.2
|    +--- org.apache.lucene:lucene-core:7.7.2
|    +--- org.apache.lucene:lucene-queries:7.7.2
|    \--- org.apache.lucene:lucene-sandbox:7.7.2
+--- org.apache.lucene:lucene-spatial:7.7.2
|    \--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-spatial-extras:7.7.2
|    +--- org.apache.lucene:lucene-core:7.7.2
|    +--- org.apache.lucene:lucene-spatial3d:7.7.2
|    +--- io.sgr:s2-geometry-library-java:1.0.0
|    \--- org.locationtech.spatial4j:spatial4j:0.7 -> 0.8
+--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
+--- org.apache.tinkerpop:gremlin-driver:3.6.1 (*)
\--- org.apache.tinkerpop:tinkergraph-gremlin:3.6.1 (*)

runtimeElements - Elements of runtime for main. (n)
No dependencies

runtimeOnly - Runtime only dependencies for source set 'main'. (n)
No dependencies

Thanks


On Monday, August 22, 2022 8:24 AM, hadoopmarc@... wrote:
Probably, janusgraph and tinkerpop versions got mixed up. If you use maven, can you show the janusgraph dependencies you used in the pom.xml (and tinkerpop if present in the pom.xml).

Best wishes,    Marc 




queshaw
 

Thank you! I haven't gotten past that point now

On Monday, August 22, 2022 10:46 AM, Boxuan Li <liboxuan@...> wrote:


It seems you introduced TinkerPop 3.6.1 which is not compatible with JanusGraph 0.6.2.


On Aug 23, 2022, at 1:28 AM, queshaw via lists.lfaidata.foundation <queshaw=use.startmail.com@...> wrote:

I am using gradle. The jars for lucene and and berkekeyje weren't installed in my local maven repository. So, my dependencies are:

jar files in my libs directory:

janusgraph-berkeleyje-0.6.2.jar
janusgraph-lucene-0.6.2.jar

then:

compileClasspath - Compile classpath for source set 'main'.
+--- org.janusgraph:janusgraph-core:0.6.2
|    +--- org.janusgraph:janusgraph-driver:0.6.2
|    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-shaded:3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-language:3.6.1
|    |    |    |    +--- org.antlr:antlr4-runtime:4.9.1
|    |    |    |    +--- org.javatuples:javatuples:1.2
|    |    |    |    \--- org.apache.commons:commons-text:1.9
|    |    |    |         \--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.apache.commons:commons-configuration2:2.7
|    |    |    |    +--- org.apache.commons:commons-lang3:3.9 -> 3.11
|    |    |    |    +--- org.apache.commons:commons-text:1.8 -> 1.9 (*)
|    |    |    |    \--- commons-logging:commons-logging:1.2
|    |    |    +--- commons-beanutils:commons-beanutils:1.9.4
|    |    |    |    +--- commons-logging:commons-logging:1.2
|    |    |    |    \--- commons-collections:commons-collections:3.2.2
|    |    |    +--- commons-collections:commons-collections:3.2.2
|    |    |    +--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.yaml:snakeyaml:1.27
|    |    |    +--- com.carrotsearch:hppc:0.7.1 -> 0.8.2
|    |    |    +--- com.jcabi:jcabi-manifests:1.2.1
|    |    |    |    \--- com.jcabi:jcabi-log:0.20.0
|    |    |    |         \--- org.mockito:mockito-core:3.4.6
|    |    |    |              +--- net.bytebuddy:byte-buddy:1.10.13
|    |    |    |              +--- net.bytebuddy:byte-buddy-agent:1.10.13
|    |    |    |              \--- org.objenesis:objenesis:2.6
|    |    |    +--- net.objecthunter:exp4j:0.4.8
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    \--- org.slf4j:jcl-over-slf4j:1.7.25
|    |    |         \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.apache.tinkerpop:gremlin-driver:3.5.3 -> 3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
|    |    |    +--- io.netty:netty-all:4.1.77.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-dns:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-haproxy:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-http:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-http2:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-memcache:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-mqtt:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-redis:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-smtp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-socks:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-stomp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-xml:4.1.77.Final
|    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-handler:4.1.77.Final
|    |    |    |    +--- io.netty:netty-handler-proxy:4.1.77.Final
|    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final
|    |    |    |    +--- io.netty:netty-resolver-dns:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-rxtx:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-sctp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-udt:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-classes-epoll:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-classes-kqueue:4.1.77.Final
|    |    |    |    \--- io.netty:netty-resolver-dns-classes-macos:4.1.77.Final
|    |    |    \--- org.apache.commons:commons-lang3:3.11
|    |    +--- org.apache.tinkerpop:gremlin-groovy:3.5.3
|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1 (*)
|    |    |    +--- org.apache.ivy:ivy:2.4.0
|    |    |    +--- org.codehaus.groovy:groovy:2.5.14
|    |    |    +--- org.codehaus.groovy:groovy-groovysh:2.5.14
|    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14
|    |    |    |    |    \--- info.picocli:picocli:4.3.2
|    |    |    |    +--- org.codehaus.groovy:groovy-console:2.5.14
|    |    |    |    |    +--- org.codehaus.groovy:groovy-templates:2.5.14
|    |    |    |    |    |    \--- org.codehaus.groovy:groovy-xml:2.5.14
|    |    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14 (*)
|    |    |    |    |    \--- org.codehaus.groovy:groovy-swing:2.5.14
|    |    |    |    \--- jline:jline:2.14.6
|    |    |    +--- org.codehaus.groovy:groovy-json:2.5.14
|    |    |    +--- org.codehaus.groovy:groovy-jsr223:2.5.14
|    |    |    +--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.mindrot:jbcrypt:0.4
|    |    |    \--- com.github.ben-manes.caffeine:caffeine:2.3.1
|    |    +--- com.google.guava:guava:29.0-jre
|    |    |    +--- com.google.guava:failureaccess:1.0.1
|    |    |    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    |    |    +--- com.google.code.findbugs:jsr305:3.0.2
|    |    |    +--- org.checkerframework:checker-qual:2.11.1
|    |    |    +--- com.google.errorprone:error_prone_annotations:2.3.4
|    |    |    \--- com.google.j2objc:j2objc-annotations:1.3
|    |    +--- org.noggit:noggit:0.8
|    |    +--- org.locationtech.spatial4j:spatial4j:0.8
|    |    +--- org.locationtech.jts:jts-core:1.17.0
|    |    +--- org.apache.commons:commons-text:1.9 (*)
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- org.apache.tinkerpop:tinkergraph-gremlin:3.5.3 -> 3.6.1
|    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
|    |    \--- org.apache.commons:commons-lang3:3.11
|    +--- org.glassfish:javax.json:1.1.4
|    +--- io.dropwizard.metrics:metrics-core:4.1.18
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- io.dropwizard.metrics:metrics-graphite:4.1.18
|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)
|    |    +--- com.rabbitmq:amqp-client:5.11.0
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- io.dropwizard.metrics:metrics-jmx:4.1.18
|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- net.oneandone.reflections8:reflections8:0.11.7
|    |    \--- org.javassist:javassist:3.22.0-GA
|    +--- commons-collections:commons-collections:3.2.2
|    +--- commons-configuration:commons-configuration:1.10
|    |    +--- commons-lang:commons-lang:2.6
|    |    \--- commons-logging:commons-logging:1.1.1 -> 1.2
|    +--- org.apache.commons:commons-configuration2:2.7 (*)
|    +--- commons-io:commons-io:2.8.0
|    +--- commons-codec:commons-codec:1.15
|    +--- com.carrotsearch:hppc:0.8.2
|    +--- com.boundary:high-scale-lib:1.0.6
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.sleepycat:je:18.3.12
+--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-analyzers-common:7.7.2
|    \--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-queryparser:7.7.2
|    +--- org.apache.lucene:lucene-core:7.7.2
|    +--- org.apache.lucene:lucene-queries:7.7.2
|    \--- org.apache.lucene:lucene-sandbox:7.7.2
+--- org.apache.lucene:lucene-spatial:7.7.2
|    \--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-spatial-extras:7.7.2
|    +--- org.apache.lucene:lucene-core:7.7.2
|    +--- org.apache.lucene:lucene-spatial3d:7.7.2
|    +--- io.sgr:s2-geometry-library-java:1.0.0
|    \--- org.locationtech.spatial4j:spatial4j:0.7 -> 0.8
+--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
+--- org.apache.tinkerpop:gremlin-driver:3.6.1 (*)
\--- org.apache.tinkerpop:tinkergraph-gremlin:3.6.1 (*)

compileOnly - Compile only dependencies for source set 'main'. (n)
No dependencies

default - Configuration for default artifacts. (n)
No dependencies

implementation - Implementation only dependencies for source set 'main'. (n)
+--- org.janusgraph:janusgraph-core:0.6.2 (n)
+--- unspecified (n)
+--- com.sleepycat:je:18.3.12 (n)
+--- org.apache.lucene:lucene-core:7.7.2 (n)
+--- org.apache.lucene:lucene-analyzers-common:7.7.2 (n)
+--- org.apache.lucene:lucene-queryparser:7.7.2 (n)
+--- org.apache.lucene:lucene-spatial:7.7.2 (n)
+--- org.apache.lucene:lucene-spatial-extras:7.7.2 (n)
+--- org.apache.tinkerpop:gremlin-core:3.6.1 (n)
+--- org.apache.tinkerpop:gremlin-driver:3.6.1 (n)
\--- org.apache.tinkerpop:tinkergraph-gremlin:3.6.1 (n)

mainSourceElements - List of source directories contained in the Main SourceSet. (n)
No dependencies

runtimeClasspath - Runtime classpath of source set 'main'.
+--- org.janusgraph:janusgraph-core:0.6.2
|    +--- org.janusgraph:janusgraph-driver:0.6.2
|    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-shaded:3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-language:3.6.1
|    |    |    |    +--- org.antlr:antlr4-runtime:4.9.1
|    |    |    |    +--- org.javatuples:javatuples:1.2
|    |    |    |    \--- org.apache.commons:commons-text:1.9
|    |    |    |         \--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.apache.commons:commons-configuration2:2.7
|    |    |    |    +--- org.apache.commons:commons-lang3:3.9 -> 3.11
|    |    |    |    +--- org.apache.commons:commons-text:1.8 -> 1.9 (*)
|    |    |    |    \--- commons-logging:commons-logging:1.2
|    |    |    +--- commons-beanutils:commons-beanutils:1.9.4
|    |    |    |    +--- commons-logging:commons-logging:1.2
|    |    |    |    \--- commons-collections:commons-collections:3.2.2
|    |    |    +--- commons-collections:commons-collections:3.2.2
|    |    |    +--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.yaml:snakeyaml:1.27
|    |    |    +--- com.carrotsearch:hppc:0.7.1 -> 0.8.2
|    |    |    +--- com.jcabi:jcabi-manifests:1.2.1
|    |    |    |    \--- com.jcabi:jcabi-log:0.20.0
|    |    |    |         \--- org.mockito:mockito-core:3.4.6
|    |    |    |              +--- net.bytebuddy:byte-buddy:1.10.13
|    |    |    |              +--- net.bytebuddy:byte-buddy-agent:1.10.13
|    |    |    |              \--- org.objenesis:objenesis:2.6
|    |    |    +--- net.objecthunter:exp4j:0.4.8
|    |    |    +--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    |    \--- org.slf4j:jcl-over-slf4j:1.7.25
|    |    |         \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
|    |    +--- org.apache.tinkerpop:gremlin-driver:3.5.3 -> 3.6.1
|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
|    |    |    +--- io.netty:netty-all:4.1.77.Final
|    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final
|    |    |    |    |    \--- io.netty:netty-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport:4.1.77.Final
|    |    |    |    |         +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |         +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |         \--- io.netty:netty-resolver:4.1.77.Final
|    |    |    |    |              \--- io.netty:netty-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-dns:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-codec:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-codec-haproxy:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-http:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-http2:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-memcache:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-mqtt:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-redis:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-smtp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-socks:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-stomp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-codec-xml:4.1.77.Final
|    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    +--- io.netty:netty-handler:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-codec:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-handler-proxy:4.1.77.Final
|    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-resolver-dns:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-resolver:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-codec:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-codec-dns:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-handler:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-rxtx:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-sctp:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-udt:4.1.77.Final
|    |    |    |    +--- io.netty:netty-transport-classes-epoll:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.77.Final
|    |    |    |    |         +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |         +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |         \--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-classes-kqueue:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-resolver-dns-classes-macos:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-resolver-dns:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-native-epoll:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-classes-epoll:4.1.77.Final (*)
|    |    |    |    +--- io.netty:netty-transport-native-kqueue:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-common:4.1.77.Final
|    |    |    |    |    +--- io.netty:netty-buffer:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport:4.1.77.Final (*)
|    |    |    |    |    +--- io.netty:netty-transport-native-unix-common:4.1.77.Final (*)
|    |    |    |    |    \--- io.netty:netty-transport-classes-kqueue:4.1.77.Final (*)
|    |    |    |    \--- io.netty:netty-resolver-dns-native-macos:4.1.77.Final
|    |    |    |         \--- io.netty:netty-resolver-dns-classes-macos:4.1.77.Final (*)
|    |    |    \--- org.apache.commons:commons-lang3:3.11
|    |    +--- org.apache.tinkerpop:gremlin-groovy:3.5.3
|    |    |    +--- org.apache.tinkerpop:gremlin-core:3.5.3 -> 3.6.1 (*)
|    |    |    +--- org.apache.ivy:ivy:2.4.0
|    |    |    +--- org.codehaus.groovy:groovy:2.5.14
|    |    |    +--- org.codehaus.groovy:groovy-groovysh:2.5.14
|    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14
|    |    |    |    |    \--- info.picocli:picocli:4.3.2
|    |    |    |    +--- org.codehaus.groovy:groovy-console:2.5.14
|    |    |    |    |    +--- org.codehaus.groovy:groovy-templates:2.5.14
|    |    |    |    |    |    \--- org.codehaus.groovy:groovy-xml:2.5.14
|    |    |    |    |    +--- org.codehaus.groovy:groovy-cli-picocli:2.5.14 (*)
|    |    |    |    |    \--- org.codehaus.groovy:groovy-swing:2.5.14
|    |    |    |    \--- jline:jline:2.14.6
|    |    |    +--- org.codehaus.groovy:groovy-json:2.5.14
|    |    |    +--- org.codehaus.groovy:groovy-jsr223:2.5.14
|    |    |    +--- org.apache.commons:commons-lang3:3.11
|    |    |    +--- org.mindrot:jbcrypt:0.4
|    |    |    \--- com.github.ben-manes.caffeine:caffeine:2.3.1
|    |    +--- com.google.guava:guava:29.0-jre
|    |    |    +--- com.google.guava:failureaccess:1.0.1
|    |    |    +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|    |    |    +--- com.google.code.findbugs:jsr305:3.0.2
|    |    |    +--- org.checkerframework:checker-qual:2.11.1
|    |    |    +--- com.google.errorprone:error_prone_annotations:2.3.4
|    |    |    \--- com.google.j2objc:j2objc-annotations:1.3
|    |    +--- org.noggit:noggit:0.8
|    |    +--- org.locationtech.spatial4j:spatial4j:0.8
|    |    +--- org.locationtech.jts:jts-core:1.17.0
|    |    +--- org.apache.commons:commons-text:1.9 (*)
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- org.apache.tinkerpop:tinkergraph-gremlin:3.5.3 -> 3.6.1
|    |    +--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
|    |    \--- org.apache.commons:commons-lang3:3.11
|    +--- org.glassfish:javax.json:1.1.4
|    +--- io.dropwizard.metrics:metrics-core:4.1.18
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- io.dropwizard.metrics:metrics-graphite:4.1.18
|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)
|    |    +--- com.rabbitmq:amqp-client:5.11.0
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- io.dropwizard.metrics:metrics-jmx:4.1.18
|    |    +--- io.dropwizard.metrics:metrics-core:4.1.18 (*)
|    |    \--- org.slf4j:slf4j-api:1.7.30
|    +--- net.oneandone.reflections8:reflections8:0.11.7
|    |    \--- org.javassist:javassist:3.22.0-GA
|    +--- commons-collections:commons-collections:3.2.2
|    +--- commons-configuration:commons-configuration:1.10
|    |    +--- commons-lang:commons-lang:2.6
|    |    \--- commons-logging:commons-logging:1.1.1 -> 1.2
|    +--- org.apache.commons:commons-configuration2:2.7 (*)
|    +--- commons-io:commons-io:2.8.0
|    +--- commons-codec:commons-codec:1.15
|    +--- com.carrotsearch:hppc:0.8.2
|    +--- com.boundary:high-scale-lib:1.0.6
|    +--- com.google.code.findbugs:jsr305:3.0.2
|    \--- org.slf4j:slf4j-api:1.7.30
+--- com.sleepycat:je:18.3.12
+--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-analyzers-common:7.7.2
|    \--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-queryparser:7.7.2
|    +--- org.apache.lucene:lucene-core:7.7.2
|    +--- org.apache.lucene:lucene-queries:7.7.2
|    \--- org.apache.lucene:lucene-sandbox:7.7.2
+--- org.apache.lucene:lucene-spatial:7.7.2
|    \--- org.apache.lucene:lucene-core:7.7.2
+--- org.apache.lucene:lucene-spatial-extras:7.7.2
|    +--- org.apache.lucene:lucene-core:7.7.2
|    +--- org.apache.lucene:lucene-spatial3d:7.7.2
|    +--- io.sgr:s2-geometry-library-java:1.0.0
|    \--- org.locationtech.spatial4j:spatial4j:0.7 -> 0.8
+--- org.apache.tinkerpop:gremlin-core:3.6.1 (*)
+--- org.apache.tinkerpop:gremlin-driver:3.6.1 (*)
\--- org.apache.tinkerpop:tinkergraph-gremlin:3.6.1 (*)

runtimeElements - Elements of runtime for main. (n)
No dependencies

runtimeOnly - Runtime only dependencies for source set 'main'. (n)
No dependencies

Thanks



On Monday, August 22, 2022 8:24 AM, hadoopmarc@... wrote:
Probably, janusgraph and tinkerpop versions got mixed up. If you use maven, can you show the janusgraph dependencies you used in the pom.xml (and tinkerpop if present in the pom.xml).

Best wishes,    Marc