com.cdsap.talaiot.plugin.pushgateway
所有者: Inaki Villar Algaba
一个简单且可扩展的插件,用于跟踪您的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, Pushgateway Plugin, simple and extensible plugin to track task and build times in your Gradle Project.
使用plugins DSL
plugins {
id("com.cdsap.talaiot.plugin.pushgateway") version "1.4.2"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.cdsap.talaiot.plugin:pushgateway:1.4.2")
}
}
apply(plugin = "com.cdsap.talaiot.plugin.pushgateway")
使用plugins DSL
plugins {
id "com.cdsap.talaiot.plugin.pushgateway" version "1.4.2"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.cdsap.talaiot.plugin:pushgateway:1.4.2"
}
}
apply plugin: "com.cdsap.talaiot.plugin.pushgateway"