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.
This commit is contained in:
Eric Anderson 2022-11-03 16:55:33 -07:00
parent 0d44203bdc
commit a82ea0cb09
1 changed files with 1 additions and 1 deletions

View File

@ -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')
]
}