Skip to content

Commit

Permalink
Update JMH 1.28 -> 1.29 and me.champeau.jmh plugin 0.5.3 -> 0.6.3 (#1468
Browse files Browse the repository at this point in the history
)

Motivation:

0.5.x plugin version can not run newer JMH versions.
  • Loading branch information
idelpivnitskiy authored Apr 2, 2021
1 parent a953261 commit ff0ec96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jaxRsVersion=2.1.6
jerseyVersion=2.32
jsonUnitVersion=2.8.1

jmhCoreVersion=1.28
jmhCoreVersion=1.29
junitVersion=4.13.2
junit5Version=5.7.1
testngVersion=6.14.3
Expand Down
10 changes: 5 additions & 5 deletions servicetalk-benchmarks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

plugins {
id "com.github.johnrengelman.shadow" version "6.1.0"
id "me.champeau.gradle.jmh" version "0.5.3"
id "me.champeau.jmh" version "0.6.3"
}

apply plugin: "io.servicetalk.servicetalk-gradle-plugin-internal-library"
Expand All @@ -43,11 +43,11 @@ dependencies {
}

jmh {
include = ".*Benchmark"
includes = [".*Benchmark"]
jmhVersion = "$jmhCoreVersion"
jvmArgsPrepend = "-Dio.netty.maxDirectMemory=9223372036854775807 " +
"-Djmh.executor=CUSTOM " +
"-Djmh.executor.class=io.servicetalk.benchmark.concurrent.AsyncContextFriendlyExecutor"
jvmArgsPrepend = ["-Dio.netty.maxDirectMemory=9223372036854775807 " +
"-Djmh.executor=CUSTOM " +
"-Djmh.executor.class=io.servicetalk.benchmark.concurrent.AsyncContextFriendlyExecutor"]
}

jmhJar {
Expand Down

0 comments on commit ff0ec96

Please sign in to comment.