nl.neotech.plugin.rootcoverage
Owner: Rolf Smit
A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.
https://github.com/NeoTech-Software/android-root-coverage-plugin
Sources: https://github.com/NeoTech-Software/android-root-coverage-plugin
Version 1.9.0 (latest)
1.9.0
Created 07 September 2024.
A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.
Using the plugins DSL:
plugins {
id("nl.neotech.plugin.rootcoverage") version "1.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("nl.neotech.plugin:android-root-coverage-plugin:1.9.0")
}
}
apply(plugin = "nl.neotech.plugin.rootcoverage")
Using the plugins DSL:
plugins {
id "nl.neotech.plugin.rootcoverage" version "1.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "nl.neotech.plugin:android-root-coverage-plugin:1.9.0"
}
}
apply plugin: "nl.neotech.plugin.rootcoverage"