Search Gradle plugins

Version 1.5.3

Created 15 June 2022.

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.5.3"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "nl.neotech.plugin.rootcoverage" version "1.5.3"
}

Using legacy plugin application:

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

apply plugin: "nl.neotech.plugin.rootcoverage"

Learn how to apply plugins to subprojects