搜索 Gradle 插件

io.github.cdsap.talaiot

Talaiot,一个用于在 Gradle 项目中跟踪任务和构建时间的简单可扩展插件。

https://github.com/cdsap/Talaiot

来源: https://github.com/cdsap/Talaiot

版本 2.0.4(最新版)

2.0.4

创建日期:2024年3月2日。

Talaiot,一个用于在 Gradle 项目中跟踪任务和构建时间的简单可扩展插件。

使用 插件 DSL

plugins {
  id("io.github.cdsap.talaiot") version "2.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.cdsap:talaiot-standard:2.0.4")
  }
}

apply(plugin = "io.github.cdsap.talaiot")

使用 插件 DSL

plugins {
  id "io.github.cdsap.talaiot" version "2.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.cdsap:talaiot-standard:2.0.4"
  }
}

apply plugin: "io.github.cdsap.talaiot"

了解如何将插件应用于子项目