com.github.dawnwords.jacoco.badge
Owner:
Jingxiao GU
Jacoco Badge Generator
https://github.com/dawnwords/jacoco-badge-gradle-plugin
Using the plugins DSL:
plugins {
id("com.github.dawnwords.jacoco.badge") version "0.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.dawnwords:jacoco-badge-gradle-plugin:0.2.4")
}
}
apply(plugin = "com.github.dawnwords.jacoco.badge")
Using the plugins DSL:
plugins {
id "com.github.dawnwords.jacoco.badge" version "0.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.dawnwords:jacoco-badge-gradle-plugin:0.2.4"
}
}
apply plugin: "com.github.dawnwords.jacoco.badge"