Search Gradle plugins

Version 0.4.8

Created 09 January 2019.

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.gradle.jmh") version "0.4.8"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "me.champeau.gradle.jmh" version "0.4.8"
}

Using legacy plugin application:

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

apply plugin: "me.champeau.gradle.jmh"

Learn how to apply plugins to subprojects