Search Gradle plugins

Version 1.3.0 (latest)

Created 02 March 2020.

A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.

Using the plugins DSL:

plugins {
  id("org.neotech.plugin.rootcoverage") version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.neotech.plugin:android-root-coverage-plugin:1.3.0")
  }
}

apply(plugin = "org.neotech.plugin.rootcoverage")

Using the plugins DSL:

plugins {
  id "org.neotech.plugin.rootcoverage" version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.neotech.plugin:android-root-coverage-plugin:1.3.0"
  }
}

apply plugin: "org.neotech.plugin.rootcoverage"

Learn how to apply plugins to subprojects