me.champeau.gradle.jmh
Owner: Cédric Champeau
Integrates the JMH microbenchmarking project into Gradle
https://github.com/melix/jmh-gradle-plugin
Version 0.5.3 (latest)
0.5.3
Created 09 February 2021.
Integrates the JMH microbenchmarking framework with Gradle, providing conventional ways to setup sources and execute micro-benchmarks with JMH. Also known as the jmh-gradle-plugin.
Using the plugins DSL:
plugins {
id("me.champeau.gradle.jmh") version "0.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.champeau.gradle:jmh-gradle-plugin:0.5.3")
}
}
apply(plugin = "me.champeau.gradle.jmh")
Using the plugins DSL:
plugins {
id "me.champeau.gradle.jmh" version "0.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.champeau.gradle:jmh-gradle-plugin:0.5.3"
}
}
apply plugin: "me.champeau.gradle.jmh"