From e9ada8d15c1275fea37dfdb62249f791df4ede80 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 5 Dec 2022 11:39:43 +0100 Subject: [PATCH] Upgrade JMH build plugins This commit upgrades the Gradle JMH plugin to 0.6.8 and the companion JMH version to 1.36. --- build.gradle | 2 +- gradle/spring-module.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index eb0882bf37..3cb59c0352 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { id 'com.github.ben-manes.versions' version '0.42.0' id 'com.github.johnrengelman.shadow' version '7.1.2' apply false id 'de.undercouch.download' version '5.1.0' - id 'me.champeau.jmh' version '0.6.6' apply false + id 'me.champeau.jmh' version '0.6.8' apply false } ext { diff --git a/gradle/spring-module.gradle b/gradle/spring-module.gradle index 99ae6762e2..64efe91661 100644 --- a/gradle/spring-module.gradle +++ b/gradle/spring-module.gradle @@ -8,8 +8,8 @@ apply plugin: 'me.champeau.jmh' apply from: "$rootDir/gradle/publications.gradle" dependencies { - jmh 'org.openjdk.jmh:jmh-core:1.32' - jmh 'org.openjdk.jmh:jmh-generator-annprocess:1.32' + jmh 'org.openjdk.jmh:jmh-core:1.36' + jmh 'org.openjdk.jmh:jmh-generator-annprocess:1.36' jmh 'net.sf.jopt-simple:jopt-simple' }