Search Gradle plugins

com.cdsap.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 1.3.0

Created 19 May 2020.

Simple and extensible plugin to track task and build times in your Gradle Project.

Using the plugins DSL:

plugins {
  id("com.cdsap.talaiot") version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.cdsap:talaiot:1.3.0")
  }
}

apply(plugin = "com.cdsap.talaiot")

Using the plugins DSL:

plugins {
  id "com.cdsap.talaiot" version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.cdsap:talaiot:1.3.0"
  }
}

apply plugin: "com.cdsap.talaiot"

Learn how to apply plugins to subprojects