Search Gradle plugins

Version 0.0.2 (latest)

Created 04 February 2020.

Profiles Gradle builds with async profiler

Using the plugins DSL:

plugins {
  id("org.gradle.gradle-profiler") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.gradle.profiler:gradle-profiler-plugin:0.0.2")
  }
}

apply(plugin = "org.gradle.gradle-profiler")

Using the plugins DSL:

plugins {
  id "org.gradle.gradle-profiler" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.gradle.profiler:gradle-profiler-plugin:0.0.2"
  }
}

apply plugin: "org.gradle.gradle-profiler"

Learn how to apply plugins to subprojects