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.6.6

Created 02 September 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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.champeau.jmh:jmh-gradle-plugin:0.6.6")
  }
}

apply(plugin = "me.champeau.jmh")

Using the plugins DSL:

plugins {
  id "me.champeau.jmh" version "0.6.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.champeau.jmh:jmh-gradle-plugin:0.6.6"
  }
}

apply plugin: "me.champeau.jmh"

Learn how to apply plugins to subprojects