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)
Created 19 April 2024.
A Gradle plugin building a visual report on top of your JMH benchmark results!
Add this plugin to your build using the plugins DSL:
plugins {
id("io.morethan.jmhreport") version "0.9.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.morethan.jmhreport:io.morethan.jmhreport.gradle.plugin:0.9.6") }
It can then be applied in the precompiled script plugin:plugins { id("io.morethan.jmhreport") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.morethan.jmhreport:io.morethan.jmhreport.gradle.plugin:0.9.6") } } apply(plugin = "io.morethan.jmhreport")
- Applying plugins to all subprojects .