Skip to content

Commit

Permalink
Remove 2 unused Maven plugins
Browse files Browse the repository at this point in the history
Cobertura can be used to calculate test coverage, but I don't think that
we are using it any more. I at least cannot find any usage of this
plugin.
Docs can be found here:
https://www.mojohaus.org/cobertura-maven-plugin/

Build Helper Maven Plugin provides several build utilities, but I also
can't find any place where we actually use the plugin.
Docs: https://www.mojohaus.org/build-helper-maven-plugin/

Signed-off-by: Florian Hockmann <[email protected]>
(cherry picked from commit bca47c5)
  • Loading branch information
FlorianHockmann committed Jul 25, 2024
1 parent b315f1d commit 3e36ff1
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -493,24 +493,11 @@
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
Expand Down

1 comment on commit 3e36ff1

@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: 3e36ff1 Previous: bca47c5 Ratio
org.janusgraph.JanusGraphSpeedBenchmark.basicAddAndDelete 12099.76005228768 ms/op 12912.548637979955 ms/op 0.94
org.janusgraph.GraphCentricQueryBenchmark.getVertices 904.5634510867853 ms/op 918.0400957291431 ms/op 0.99
org.janusgraph.MgmtOlapJobBenchmark.runClearIndex 217.23069832065215 ms/op 216.4635572547101 ms/op 1.00
org.janusgraph.MgmtOlapJobBenchmark.runReindex 338.7511651519048 ms/op 347.80464277685894 ms/op 0.97
org.janusgraph.JanusGraphSpeedBenchmark.basicCount 229.4655465564423 ms/op 216.40289108422564 ms/op 1.06
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesAllPropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 4663.253991459444 ms/op 5024.445582277027 ms/op 0.93
org.janusgraph.CQLMultiQueryBenchmark.getElementsWithUsingEmitRepeatSteps 17025.27883062878 ms/op 17159.196377976783 ms/op 0.99
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithSmallBatch 19740.037434192123 ms/op 20724.36722410404 ms/op 0.95
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.vertexCentricPropertiesFetching 55275.847495933325 ms/op 58162.35436213332 ms/op 0.95
org.janusgraph.CQLMultiQueryBenchmark.getAllElementsTraversedFromOuterVertex 8126.0124336759145 ms/op 8357.110491468684 ms/op 0.97
org.janusgraph.CQLMultiQueryBenchmark.getVerticesWithDoubleUnion 377.396558605614 ms/op 387.6863383382277 ms/op 0.97
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesAllPropertiesWithUnlimitedBatch 3998.1693851333694 ms/op 4213.8777475333945 ms/op 0.95
org.janusgraph.CQLMultiQueryBenchmark.getNames 8468.22543393478 ms/op 8292.920591714219 ms/op 1.02
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesThreePropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 5881.398989613432 ms/op 6038.63465033781 ms/op 0.97
org.janusgraph.CQLMultiQueryBenchmark.getLabels 7023.860632901081 ms/op 7199.99021713888 ms/op 0.98
org.janusgraph.CQLMultiQueryBenchmark.getVerticesFilteredByAndStep 429.0426524522368 ms/op 436.20180871236005 ms/op 0.98
org.janusgraph.CQLMultiQueryBenchmark.getVerticesFromMultiNestedRepeatStepStartingFromSingleVertex 12233.708423325212 ms/op 12934.501404644643 ms/op 0.95
org.janusgraph.CQLMultiQueryBenchmark.getVerticesWithCoalesceUsage 353.20975694868577 ms/op 366.0040859039988 ms/op 0.97
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 13460.672421777737 ms/op 15425.554640038366 ms/op 0.87
org.janusgraph.CQLMultiQueryBenchmark.getIdToOutVerticesProjection 251.8730377611264 ms/op 253.11102554260657 ms/op 1.00
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithUnlimitedBatch 13993.411253635499 ms/op 15594.566794325445 ms/op 0.90
org.janusgraph.CQLMultiQueryBenchmark.getNeighborNames 8223.919907267167 ms/op 8428.010412274583 ms/op 0.98
org.janusgraph.CQLMultiQueryBenchmark.getElementsWithUsingRepeatUntilSteps 8905.135171685157 ms/op 9070.584048547127 ms/op 0.98
org.janusgraph.CQLMultiQueryBenchmark.getAdjacentVerticesLocalCounts 8489.60611570088 ms/op 8487.596133540426 ms/op 1.00

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

Please sign in to comment.