Search Gradle plugins

org.wrlyonsjr.jacoco-coverage

The org.wrlyonsjr.jacoco-coverage and org.wrlyonsjr.jacoco-full-report plugins provide tasks and configuration to aggregate jacoco coverage reports and thresholding at the root project level.

https://github.com/wrlyonsjr/gradle-aggregate-jacoco

Sources: https://github.com/wrlyonsjr/gradle-aggregate-jacoco

Version 0.0.6 (latest)

Created 18 February 2020.

The org.wrlyonsjr.jacoco-coverage and org.wrlyonsjr.jacoco-full-report plugins provide tasks and configuration to aggregate jacoco coverage reports and thresholding at the root project level.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.wrlyonsjr.jacoco-coverage") version "0.0.6"
}

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