me.champeau.jmh
Owner: Cédric Champeau
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.
https://github.com/melix/jmh-gradle-plugin
Sources: https://github.com/melix/jmh-gradle-plugin.git
Version 0.7.2 (latest)
0.7.2
Created 27 October 2023.
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.jmh") version "0.7.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.champeau.jmh:jmh-gradle-plugin:0.7.2")
}
}
apply(plugin = "me.champeau.jmh")
Using the plugins DSL:
plugins {
id "me.champeau.jmh" version "0.7.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.champeau.jmh:jmh-gradle-plugin:0.7.2"
}
}
apply plugin: "me.champeau.jmh"