Upgrade to JMH 1.32 and avoid accidental dependency on jopt-simple 4.6

JMH is now implicitly configured to use jopt-simple 5.0.4 instead of 4.6.

This problem was uncovered while fixing gh-27365
This commit is contained in:
Sam Brannen 2021-09-07 10:45:44 +02:00
parent 77a6dce1b5
commit e7b499f7b6
1 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,9 @@ apply plugin: 'me.champeau.jmh'
apply from: "$rootDir/gradle/publications.gradle"
dependencies {
jmh 'org.openjdk.jmh:jmh-core:1.28'
jmh 'org.openjdk.jmh:jmh-generator-annprocess:1.28'
jmh 'net.sf.jopt-simple:jopt-simple:4.6'
jmh 'org.openjdk.jmh:jmh-core:1.32'
jmh 'org.openjdk.jmh:jmh-generator-annprocess:1.32'
jmh 'net.sf.jopt-simple:jopt-simple'
}
jmh {