Skip to content

Commit

Permalink
Exclude asm-commons from java-driver-core
Browse files Browse the repository at this point in the history
This resolves a dependency convergence error as java-driver-core still
(indirectly) depends on an older asm version.

Signed-off-by: Florian Hockmann <[email protected]>
  • Loading branch information
FlorianHockmann committed Jan 25, 2023
1 parent cfc6a96 commit 28ee8a0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions janusgraph-cql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down

1 comment on commit 28ee8a0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 28ee8a0 Previous: 0a3aabe Ratio
org.janusgraph.JanusGraphSpeedBenchmark.basicAddAndDelete 20647.88559342548 ms/op 14259.91238568746 ms/op 1.45
org.janusgraph.GraphCentricQueryBenchmark.getVertices 1819.8643551847358 ms/op 1408.2267234686926 ms/op 1.29
org.janusgraph.MgmtOlapJobBenchmark.runClearIndex 222.33170006956524 ms/op 220.5782195130435 ms/op 1.01
org.janusgraph.MgmtOlapJobBenchmark.runReindex 580.6031300898412 ms/op 465.6906487872728 ms/op 1.25
org.janusgraph.JanusGraphSpeedBenchmark.basicCount 374.4784736062903 ms/op 372.5253035815745 ms/op 1.01
org.janusgraph.CQLMultiQueryBenchmark.getNeighborNames 59911.215655266664 ms/op 38371.55033232667 ms/op 1.56
org.janusgraph.CQLMultiQueryBenchmark.getNames 58114.62331929999 ms/op 39854.0220677 ms/op 1.46

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.