io.github.cdsap.talaiot
Owner: Inaki Villar Algaba
Talaiot, simple and extensible plugin to track task and build times in your Gradle Project.
https://github.com/cdsap/Talaiot
Sources: https://github.com/cdsap/Talaiot
Version 2.0.5
2.0.5
Created 27 August 2024.
Talaiot, simple and extensible plugin to track task and build times in your Gradle Project.
Using the plugins DSL:
plugins {
id("io.github.cdsap.talaiot") version "2.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.cdsap:talaiot-standard:2.0.5")
}
}
apply(plugin = "io.github.cdsap.talaiot")
Using the plugins DSL:
plugins {
id "io.github.cdsap.talaiot" version "2.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.cdsap:talaiot-standard:2.0.5"
}
}
apply plugin: "io.github.cdsap.talaiot"