Search Gradle plugins

org.wrlyonsjr.jacoco-full-report

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.5

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.

Using the plugins DSL:

plugins {
  id("org.wrlyonsjr.jacoco-full-report") version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.wrlyonsjr:jacoco-coverage:0.0.5")
  }
}

apply(plugin = "org.wrlyonsjr.jacoco-full-report")

Using the plugins DSL:

plugins {
  id "org.wrlyonsjr.jacoco-full-report" version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.wrlyonsjr:jacoco-coverage:0.0.5"
  }
}

apply plugin: "org.wrlyonsjr.jacoco-full-report"

Learn how to apply plugins to subprojects