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)

0.0.6

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.wrlyonsjr:jacoco-coverage:0.0.6")
      }
    }
    
    apply(plugin = "org.wrlyonsjr.jacoco-coverage")
  • Applying plugins to all subprojects .