Search Gradle plugins

me.champeau.gradle.jmh

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.champeau.gradle.jmh") version "0.5.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("me.champeau.gradle:jmh-gradle-plugin:0.5.3")
      }
    }
    
    apply(plugin = "me.champeau.gradle.jmh")
  • Applying plugins to all subprojects .