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:
parent
77a6dce1b5
commit
e7b499f7b6
|
@ -8,9 +8,9 @@ apply plugin: 'me.champeau.jmh'
|
||||||
apply from: "$rootDir/gradle/publications.gradle"
|
apply from: "$rootDir/gradle/publications.gradle"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
jmh 'org.openjdk.jmh:jmh-core:1.28'
|
jmh 'org.openjdk.jmh:jmh-core:1.32'
|
||||||
jmh 'org.openjdk.jmh:jmh-generator-annprocess:1.28'
|
jmh 'org.openjdk.jmh:jmh-generator-annprocess:1.32'
|
||||||
jmh 'net.sf.jopt-simple:jopt-simple:4.6'
|
jmh 'net.sf.jopt-simple:jopt-simple'
|
||||||
}
|
}
|
||||||
|
|
||||||
jmh {
|
jmh {
|
||||||
|
|
Loading…
Reference in New Issue