io.github.gmazzo.test.aggregation.coverage
Owner: Guillermo Mazzola
Jacoco coverage aggregation support for Android/JVM modules
https://github.com/gmazzo/gradle-android-test-aggregation-plugin
Sources: https://github.com/gmazzo/gradle-android-test-aggregation-plugin
Version 2.2.1 (latest)
2.2.1
Created 28 June 2024.
Jacoco coverage aggregation support for Android/JVM modules
Using the plugins DSL:
plugins {
id("io.github.gmazzo.test.aggregation.coverage") version "2.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.gmazzo.test.aggregation:plugin:2.2.1")
}
}
apply(plugin = "io.github.gmazzo.test.aggregation.coverage")
Using the plugins DSL:
plugins {
id "io.github.gmazzo.test.aggregation.coverage" version "2.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.gmazzo.test.aggregation:plugin:2.2.1"
}
}
apply plugin: "io.github.gmazzo.test.aggregation.coverage"