We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10c27e4 commit 5578b25Copy full SHA for 5578b25
platform-tests/platform-tests.gradle
@@ -59,7 +59,7 @@ dependencies {
59
jmh("org.openjdk.jmh:jmh-core:${jmhVersion}") {
60
exclude group: 'net.sf.jopt-simple', module: 'jopt-simple'
61
}
62
- jmh("org.openjdk.jmh:jmh-generator-annprocess:${jmhVersion}")
+ jmhAnnotationProcessor("org.openjdk.jmh:jmh-generator-annprocess:${jmhVersion}")
63
jmh(project(':junit-jupiter-api'))
64
jmh("junit:junit:${junit4Version}")
65
@@ -69,8 +69,8 @@ jmh {
69
70
duplicateClassesStrategy = DuplicatesStrategy.WARN
71
fork = 0 // Too long command line on Windows...
72
- // warmupIterations = 1
73
- // iterations = 5
+ warmupIterations = 1
+ iterations = 5
74
75
76
checkstyleJmh { // use same style rules as defined for tests
0 commit comments