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.0.1
Created 02 January 2020.
Logs JaCoCo test coverage to the Gradle build log
Add this plugin to your build using the plugins DSL:
plugins {
id("org.barfuin.gradle.jacocolog") version "1.0.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.barfuin.gradle.jacocolog:org.barfuin.gradle.jacocolog.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.barfuin.gradle.jacocolog") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.barfuin.gradle.jacocolog:org.barfuin.gradle.jacocolog.gradle.plugin:1.0.1") } } apply(plugin = "org.barfuin.gradle.jacocolog")
- Applying plugins to all subprojects .