diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2022-11-16 09:55:22 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2022-11-16 09:55:22 +0100 |
commit | d588c2c9ad4c416f767737f01675f3e7c8b69b91 (patch) | |
tree | f877ce464df21bd86c31132f5415c20779cd829b /org.eclipse.jgit.benchmarks/pom.xml | |
parent | 34600e3ca23262ed67555d147fa46892b5a5e67b (diff) | |
parent | 7f36943d0ce31356b99db4a1fed76633dd2b516c (diff) | |
download | jgit-d588c2c9ad4c416f767737f01675f3e7c8b69b91.tar.gz jgit-d588c2c9ad4c416f767737f01675f3e7c8b69b91.zip |
Merge branch 'stable-6.1' into stable-6.2
* stable-6.1:
[benchmarks] Remove profiler configuration
Add SHA1 benchmark
[benchmarks] Set version of maven-compiler-plugin to 3.8.1
Fix running JMH benchmarks
Add option to allow using JDK's SHA1 implementation
Ignore IllegalStateException if JVM is already shutting down
Change-Id: Ie433c46a01a0f33848d54ecf99b30a44ca01e286
Diffstat (limited to 'org.eclipse.jgit.benchmarks/pom.xml')
-rw-r--r-- | org.eclipse.jgit.benchmarks/pom.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.jgit.benchmarks/pom.xml b/org.eclipse.jgit.benchmarks/pom.xml index 3349a16736..78e19e9a0f 100644 --- a/org.eclipse.jgit.benchmarks/pom.xml +++ b/org.eclipse.jgit.benchmarks/pom.xml @@ -37,13 +37,17 @@ <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>${jmh.version}</version> - <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.eclipse.jgit</groupId> + <artifactId>org.eclipse.jgit.junit</artifactId> + <version>${project.version}</version> + </dependency> </dependencies> <build> |