io.github.cdsap.talaiot.plugin.base
Owner: Inaki Villar Algaba
Talaiot, Base Plugin, 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 1.5.3
1.5.3
Created 25 May 2022.
Talaiot, Base Plugin, simple and extensible plugin to track task and build times in your Gradle Project.
Using the plugins DSL:
plugins {
id("io.github.cdsap.talaiot.plugin.base") version "1.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.cdsap.talaiot.plugin:base-plugin:1.5.3")
}
}
apply(plugin = "io.github.cdsap.talaiot.plugin.base")
Using the plugins DSL:
plugins {
id "io.github.cdsap.talaiot.plugin.base" version "1.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.cdsap.talaiot.plugin:base-plugin:1.5.3"
}
}
apply plugin: "io.github.cdsap.talaiot.plugin.base"