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 1.2.0
Created 12 June 2020.
Logs JaCoCo test coverage to the Gradle build log
Using the plugins DSL:
plugins {
id("org.barfuin.gradle.jacocolog") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.barfuin.gradle.jacocolog:gradle-jacoco-log:1.2.0")
}
}
apply(plugin = "org.barfuin.gradle.jacocolog")
Using the plugins DSL:
plugins {
id "org.barfuin.gradle.jacocolog" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.barfuin.gradle.jacocolog:gradle-jacoco-log:1.2.0"
}
}
apply plugin: "org.barfuin.gradle.jacocolog"