org.barfuin.gradle.jacocolog
Owner:
Barfuin
Logs JaCoCo test coverage to the Gradle build log
https://gitlab.com/barfuin/gradle-jacoco-log
Sources: https://github.com/barfuin/gradle-jacoco-log
Version 3.0.0
Created 26 January 2023.
Aggregates and/or logs Jacoco test coverage to the Gradle build log
Using the plugins DSL:
plugins {
id("org.barfuin.gradle.jacocolog") version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.barfuin.gradle.jacocolog:gradle-jacoco-log:3.0.0")
}
}
apply(plugin = "org.barfuin.gradle.jacocolog")
Using the plugins DSL:
plugins {
id "org.barfuin.gradle.jacocolog" version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.barfuin.gradle.jacocolog:gradle-jacoco-log:3.0.0"
}
}
apply plugin: "org.barfuin.gradle.jacocolog"