Search Gradle plugins

com.palantir.jacoco-full-report

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.3.0-dirty

Created 07 August 2015.

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.palantir.jacoco-full-report") version "0.3.0-dirty"
}

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("com.palantir.jacoco-full-report:com.palantir.jacoco-full-report.gradle.plugin:0.3.0-dirty")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.palantir.jacoco-full-report")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.palantir.jacoco-full-report:com.palantir.jacoco-full-report.gradle.plugin:0.3.0-dirty")
      }
    }
    
    apply(plugin = "com.palantir.jacoco-full-report")
  • Applying plugins to all subprojects .