com.github.dawnwords.jacoco.badge
所有者: 顾景晓
Jacoco徽章生成器
https://github.com/dawnwords/jacoco-badge-gradle-plugin
源代码: https://github.com/dawnwords/jacoco-badge-gradle-plugin
使用 插件DSL
plugins {
id("com.github.dawnwords.jacoco.badge") version "0.2.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.dawnwords:jacoco-badge-gradle-plugin:0.2.4")
}
}
apply(plugin = "com.github.dawnwords.jacoco.badge")
使用 插件DSL
plugins {
id "com.github.dawnwords.jacoco.badge" version "0.2.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.dawnwords:jacoco-badge-gradle-plugin:0.2.4"
}
}
apply plugin: "com.github.dawnwords.jacoco.badge"