Search Gradle plugins

me.champeau.jmh

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.

Add this plugin to your build using the plugins DSL:

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

See also:

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