Search Gradle plugins

io.github.cdsap.talaiot.plugin.base

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 2.0.6 (latest)

2.0.6

Created 07 November 2024.

Talaiot, Base Plugin, simple and extensible plugin to track task and build times in your Gradle Project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.cdsap.talaiot.plugin.base") version "2.0.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.cdsap.talaiot.plugin:base-plugin:2.0.6")
      }
    }
    
    apply(plugin = "io.github.cdsap.talaiot.plugin.base")
  • Applying plugins to all subprojects .