搜索Gradle插件

io.github.cdsap.talaiot.plugin.base

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.plugin.base") version "2.0.4"
}

使用旧版插件应用程序

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

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

使用插件DSL

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

使用旧版插件应用程序

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

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

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