搜索Gradle插件

com.cdsap.talaiot.plugin.base

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

https://github.com/cdsap/Talaiot

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

版本 1.4.2(最新版)

1.4.2

创建日期:2021年3月7日。

此插件版本将不再解析,因为当JCenter永久重定向到Maven Central时,它只使用在JCenter中可找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Talaiot, Base Plugin, simple and extensible plugin to track task and build times in your Gradle Project.

使用插件DSL

plugins {
  id("com.cdsap.talaiot.plugin.base") version "1.4.2"
}

使用旧插件应用程序

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

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

使用插件DSL

plugins {
  id "com.cdsap.talaiot.plugin.base" version "1.4.2"
}

使用旧插件应用程序

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

apply plugin: "com.cdsap.talaiot.plugin.base"

学习如何将插件应用到子项目中