From e7b499f7b6d0020e0c8ac38bd9e267f1e7f2506c Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 7 Sep 2021 10:45:44 +0200 Subject: [PATCH] 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 --- gradle/spring-module.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle/spring-module.gradle b/gradle/spring-module.gradle index e0faef367a..4b2b23d60a 100644 --- a/gradle/spring-module.gradle +++ b/gradle/spring-module.gradle @@ -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 {