From a82ea0cb09caef7ad56cc5e0b07473ae420bbeab Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Thu, 3 Nov 2022 16:55:33 -0700 Subject: [PATCH] Fix jmh -PjmhIncludeSingleClass I would have assumed a JMH plugin update renamed include to includes, but I don't see a mention to it in the plugin changelog. Either it was an undocumented rename, or devs just kept fixing it locally and not fixing upstream. In either case, it works now. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0e247ba4cf..21068ba522 100644 --- a/build.gradle +++ b/build.gradle @@ -300,7 +300,7 @@ subprojects { // depends on core; core's testCompile depends on testing) includeTests = false if (project.hasProperty('jmhIncludeSingleClass')) { - include = [ + includes = [ project.property('jmhIncludeSingleClass') ] }