io.morethan.jmhreport
Owner: Johannes Zillmann
A Gradle plugin building a visual report for JMH benchmarks!
https://github.com/jzillmann/gradle-jmh-report
Sources: https://github.com/jzillmann/gradle-jmh-report
Version 0.9.6 (latest)
0.9.6
Created 19 April 2024.
A Gradle plugin building a visual report on top of your JMH benchmark results!
Using the plugins DSL:
plugins {
id("io.morethan.jmhreport") version "0.9.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.morethan.jmhreport:gradle-jmh-report:0.9.6")
}
}
apply(plugin = "io.morethan.jmhreport")
Using the plugins DSL:
plugins {
id "io.morethan.jmhreport" version "0.9.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.morethan.jmhreport:gradle-jmh-report:0.9.6"
}
}
apply plugin: "io.morethan.jmhreport"