Search Gradle plugins

io.github.estivensh4.jacoco-full-report

The io.github.estivensh4.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/estivensh4/kotlin-libs-publisher

Sources: https://github.com/estivensh4/kotlin-libs-publisher

Version 0.0.1

Created 18 February 2023.

The io.github.estivensh4.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.

Using the plugins DSL:

plugins {
  id("io.github.estivensh4.jacoco-full-report") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.estivensh4:kotlin-libs-publisher:0.0.1")
  }
}

apply(plugin = "io.github.estivensh4.jacoco-full-report")

Using the plugins DSL:

plugins {
  id "io.github.estivensh4.jacoco-full-report" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.estivensh4:kotlin-libs-publisher:0.0.1"
  }
}

apply plugin: "io.github.estivensh4.jacoco-full-report"

Learn how to apply plugins to subprojects