io.github.estivensh4.jacoco-full-report
Owner: Estiven Sánchez
The io.github.estivensh4.jacoco-full-report plugin adds a task that produces a Jacoco report for the combined code coverage of the tests of all subprojects of the current project.
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-full-report plugin adds a task that produces a Jacoco report for the combined code coverage of the tests of all subprojects of the current project.
Using the plugins DSL:
plugins {
id("io.github.estivensh4.jacoco-full-report") 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-full-report")
Using the plugins DSL:
plugins {
id "io.github.estivensh4.jacoco-full-report" 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-full-report"