Search Gradle plugins

Version 1.0.1

Created 16 November 2018.

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects