Search Gradle plugins

Version 0.0.1

Created 22 May 2017.

Let's measure how long developers around the world are compiling software.

Using the plugins DSL:

plugins {
  id("com.github.pedrovgs.kuronometer") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.pedrovgs:kuronometer:0.0.1")
  }
}

apply(plugin = "com.github.pedrovgs.kuronometer")

Using the plugins DSL:

plugins {
  id "com.github.pedrovgs.kuronometer" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.pedrovgs:kuronometer:0.0.1"
  }
}

apply plugin: "com.github.pedrovgs.kuronometer"

Learn how to apply plugins to subprojects