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 26, 2024
1 parent b30df90 commit 4443fe0
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 4443fe0

@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: 4443fe0 Previous: bca47c5 Ratio
org.janusgraph.JanusGraphSpeedBenchmark.basicAddAndDelete 12464.153633958982 ms/op 12912.548637979955 ms/op 0.97
org.janusgraph.GraphCentricQueryBenchmark.getVertices 905.1818442871604 ms/op 918.0400957291431 ms/op 0.99
org.janusgraph.MgmtOlapJobBenchmark.runClearIndex 217.06305714528986 ms/op 216.4635572547101 ms/op 1.00
org.janusgraph.MgmtOlapJobBenchmark.runReindex 336.24244741285713 ms/op 347.80464277685894 ms/op 0.97
org.janusgraph.JanusGraphSpeedBenchmark.basicCount 244.26499414500077 ms/op 216.40289108422564 ms/op 1.13
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesAllPropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 4734.878551963828 ms/op 5024.445582277027 ms/op 0.94
org.janusgraph.CQLMultiQueryBenchmark.getElementsWithUsingEmitRepeatSteps 17029.0796489625 ms/op 17159.196377976783 ms/op 0.99
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithSmallBatch 20220.197131568686 ms/op 20724.36722410404 ms/op 0.98
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.vertexCentricPropertiesFetching 57600.56559193334 ms/op 58162.35436213332 ms/op 0.99
org.janusgraph.CQLMultiQueryBenchmark.getAllElementsTraversedFromOuterVertex 8322.300112266339 ms/op 8357.110491468684 ms/op 1.00
org.janusgraph.CQLMultiQueryBenchmark.getVerticesWithDoubleUnion 380.84135677530634 ms/op 387.6863383382277 ms/op 0.98
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesAllPropertiesWithUnlimitedBatch 4093.6295927039705 ms/op 4213.8777475333945 ms/op 0.97
org.janusgraph.CQLMultiQueryBenchmark.getNames 8465.368780440414 ms/op 8292.920591714219 ms/op 1.02
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesThreePropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 5590.053054811952 ms/op 6038.63465033781 ms/op 0.93
org.janusgraph.CQLMultiQueryBenchmark.getLabels 7008.604954624928 ms/op 7199.99021713888 ms/op 0.97
org.janusgraph.CQLMultiQueryBenchmark.getVerticesFilteredByAndStep 429.4484409452052 ms/op 436.20180871236005 ms/op 0.98
org.janusgraph.CQLMultiQueryBenchmark.getVerticesFromMultiNestedRepeatStepStartingFromSingleVertex 12349.929145131813 ms/op 12934.501404644643 ms/op 0.95
org.janusgraph.CQLMultiQueryBenchmark.getVerticesWithCoalesceUsage 362.3282650759493 ms/op 366.0040859039988 ms/op 0.99
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 13842.981002141516 ms/op 15425.554640038366 ms/op 0.90
org.janusgraph.CQLMultiQueryBenchmark.getIdToOutVerticesProjection 248.8572402326158 ms/op 253.11102554260657 ms/op 0.98
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithUnlimitedBatch 14359.667955941211 ms/op 15594.566794325445 ms/op 0.92
org.janusgraph.CQLMultiQueryBenchmark.getNeighborNames 8261.494476961949 ms/op 8428.010412274583 ms/op 0.98
org.janusgraph.CQLMultiQueryBenchmark.getElementsWithUsingRepeatUntilSteps 9272.566489583667 ms/op 9070.584048547127 ms/op 1.02
org.janusgraph.CQLMultiQueryBenchmark.getAdjacentVerticesLocalCounts 8728.916678390151 ms/op 8487.596133540426 ms/op 1.03

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

Please sign in to comment.