diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2021-06-29 21:34:49 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2021-07-08 17:59:49 +0200 |
commit | caf3fbe8bfac560b7b2048044a1ccaf9cfa65709 (patch) | |
tree | 1313208bfb670b803d6db6fe8a43ddb55c117d11 | |
parent | 66c9c7bf876bd81ebf57a769f14f5403861f83db (diff) | |
download | jgit-caf3fbe8bfac560b7b2048044a1ccaf9cfa65709.tar.gz jgit-caf3fbe8bfac560b7b2048044a1ccaf9cfa65709.zip |
Update JMH used in benchmarks to 1.32
Change-Id: I98734165de8256ab1461733169957efbfa5f36e4
CQ: 23499
CQ: 23500
-rw-r--r-- | DEPENDENCIES | 4 | ||||
-rw-r--r-- | WORKSPACE | 6 | ||||
-rw-r--r-- | org.eclipse.jgit.benchmarks/pom.xml | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/DEPENDENCIES b/DEPENDENCIES index 674ef91d10..bd90df4146 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -58,8 +58,8 @@ maven/mavencentral/org.eclipse.jgit/org.eclipse.jgit/5.13.0-SNAPSHOT, BSD-3-Clau maven/mavencentral/org.hamcrest/hamcrest-core/1.3, BSD-2-Clause, approved, CQ7063 maven/mavencentral/org.mockito/mockito-core/2.23.0, MIT, approved, CQ17976 maven/mavencentral/org.objenesis/objenesis/2.6, Apache-2.0, approved, CQ15478 -maven/mavencentral/org.openjdk.jmh/jmh-core/1.21, GPL-2.0, approved, CQ20517 -maven/mavencentral/org.openjdk.jmh/jmh-generator-annprocess/1.21, GPL-2.0, approved, CQ20518 +maven/mavencentral/org.openjdk.jmh/jmh-core/1.32, GPL-2.0, approved, CQ23499 +maven/mavencentral/org.openjdk.jmh/jmh-generator-annprocess/1.32, GPL-2.0, approved, CQ23500 maven/mavencentral/org.osgi/org.osgi.core/4.3.1, Apache-2.0, approved, CQ10111 maven/mavencentral/org.slf4j/jcl-over-slf4j/1.7.30, Apache-2.0, approved, CQ12843 maven/mavencentral/org.slf4j/slf4j-api/1.7.30, MIT, approved, CQ23467 @@ -55,20 +55,20 @@ exports_files(["WORKSPACE"], visibility = ["//visibility:public"]) ], ) -JMH_VERS = "1.21" +JMH_VERS = "1.32" maven_jar( name = "jmh-core", artifact = "org.openjdk.jmh:jmh-core:" + JMH_VERS, attach_source = False, - sha1 = "442447101f63074c61063858033fbfde8a076873", + sha1 = "9a8b69ea08118fd4e5d30a152d37b7087ee4a720", ) maven_jar( name = "jmh-annotations", artifact = "org.openjdk.jmh:jmh-generator-annprocess:" + JMH_VERS, attach_source = False, - sha1 = "7aac374614a8a76cad16b91f1a4419d31a7dcda3", + sha1 = "0a28eccc75e0d65984ce25e1ec4dd021a0ca6c57", ) maven_jar( diff --git a/org.eclipse.jgit.benchmarks/pom.xml b/org.eclipse.jgit.benchmarks/pom.xml index a2dcdb5417..5e34572ad5 100644 --- a/org.eclipse.jgit.benchmarks/pom.xml +++ b/org.eclipse.jgit.benchmarks/pom.xml @@ -23,7 +23,7 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <javac.target>1.8</javac.target> - <jmh.version>1.21</jmh.version> + <jmh.version>1.32</jmh.version> <uberjar.name>benchmarks</uberjar.name> </properties> |