ca.watier.gradle.plugins.gradle-execution-reporter-plugin
所有者: Yannick Watier
此插件监控 Gradle 的任务,并将失败的任务写入 JSON 文件。
https://gitlab.com/doi9t/gradle-execution-reporter-plugin
来源:https://gitlab.com/doi9t/gradle-execution-reporter-plugin
使用 插件 DSL
plugins {
id("ca.watier.gradle.plugins.gradle-execution-reporter-plugin") version "1.2.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("ca.watier.gradle.plugins:gradle-execution-reporter-plugin:1.2.0")
}
}
apply(plugin = "ca.watier.gradle.plugins.gradle-execution-reporter-plugin")
使用 插件 DSL
plugins {
id "ca.watier.gradle.plugins.gradle-execution-reporter-plugin" version "1.2.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "ca.watier.gradle.plugins:gradle-execution-reporter-plugin:1.2.0"
}
}
apply plugin: "ca.watier.gradle.plugins.gradle-execution-reporter-plugin"