com.github.pedrovgs.kuronometer
Owner: Pedro Vicente Gómez Sánchez
Let's measure how long developers around the world are compiling software.
https://github.com/pedrovgs/Kuronometer
Sources: https://github.com/pedrovgs/Kuronometer
Version 0.0.2 (latest)
0.0.2
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.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.pedrovgs:kuronometer:0.0.2")
}
}
apply(plugin = "com.github.pedrovgs.kuronometer")
Using the plugins DSL:
plugins {
id "com.github.pedrovgs.kuronometer" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.pedrovgs:kuronometer:0.0.2"
}
}
apply plugin: "com.github.pedrovgs.kuronometer"