io.github.estivensh4.jacoco-coverage
Owner: Estiven Sánchez
The io.github.estivensh4.jacoco-coverage plugin allows Gradle build scripts to configure minimum Java Code Coverage thresholds for projects, packages, classes, and files.
https://github.com/estivensh4/kotlin-libs-publisher
Sources: https://github.com/estivensh4/kotlin-libs-publisher
Version 0.0.2 (latest)
0.0.2
Created 23 February 2023.
The io.github.estivensh4.jacoco-coverage plugin allows Gradle build scripts to configure minimum Java Code Coverage thresholds for projects, packages, classes, and files.
Using the plugins DSL:
plugins {
id("io.github.estivensh4.jacoco-coverage") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.estivensh4:kotlin-libs-publisher:0.0.2")
}
}
apply(plugin = "io.github.estivensh4.jacoco-coverage")
Using the plugins DSL:
plugins {
id "io.github.estivensh4.jacoco-coverage" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.estivensh4:kotlin-libs-publisher:0.0.2"
}
}
apply plugin: "io.github.estivensh4.jacoco-coverage"