com.palantir.jacoco-coverage
Owner: Palantir Technologies
The com.palantir.jacoco-coverage plugin allows Gradle build scripts to configure minimum Java Code Coverage thresholds for projects, packages, classes, and files. The com.palantir.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/palantir/gradle-jacoco-coverage
Sources: https://github.com/palantir/gradle-jacoco-coverage
Version 0.0.0-dirty-1
0.0.0-dirty-1
Created 07 August 2015.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.palantir.jacoco-coverage") version "0.0.0-dirty-1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.com.palantir:jacoco-coverage:0.0.0-dirty-1") } } apply(plugin = "com.palantir.jacoco-coverage")
- Applying plugins to all subprojects .