summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index be0ca4ec..99301f1b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -32,7 +32,7 @@ buildscript {
plugins { id 'biz.aQute.bnd.builder' version '3.3.0' apply false }
plugins { id 'com.github.sherter.google-java-format' version '0.7.1' apply false }
-plugins { id 'me.champeau.gradle.jmh' version '0.4.5' apply false }
+plugins { id 'me.champeau.gradle.jmh' version '0.4.7' apply false }
plugins { id 'org.sonarqube' version '2.6.2' apply false }
description = 'ASM, a very small and fast Java bytecode manipulation framework'
@@ -128,7 +128,7 @@ project(':benchmarks') {
'org.javassist:javassist:3.21.0-GA',
'org.mozilla:rhino:1.7.7.1'
]
- ['4.0', '5.0.1', '6.0'].each { version ->
+ ['4.0', '5.0.1', '6.0', '6.1.1', '6.2.1'].each { version ->
configurations.create("asm${version}")
dependencies.add("asm${version}", "org.ow2.asm:asm:${version}@jar")
dependencies.add("asm${version}", "org.ow2.asm:asm-tree:${version}@jar")
@@ -139,7 +139,7 @@ project(':benchmarks') {
classes.dependsOn "asm${version}"
}
jmh {
- jmhVersion = '1.20'
+ resultFormat = 'CSV'
profilers = ['org.objectweb.asm.benchmarks.MemoryProfiler']
if (rootProject.hasProperty('jmhInclude')) {
include = [jmhInclude]