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.0
Created 23 February 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.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("me.champeau.jmh") version "0.7.0"
}
              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("me.champeau.jmh:me.champeau.jmh.gradle.plugin:0.7.0") }It can then be applied in the precompiled script plugin:plugins { id("me.champeau.jmh") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.champeau.jmh:me.champeau.jmh.gradle.plugin:0.7.0") } } apply(plugin = "me.champeau.jmh") - Applying plugins to all subprojects .