Search Gradle plugins

com.dicedmelon.gradle.jacoco-android

A Gradle plugin that adds fully configured JacocoReport tasks for unit tests of each Android application and library project variant.

https://github.com/arturdm/jacoco-android-gradle-plugin

Sources: https://github.com/arturdm/jacoco-android-gradle-plugin

Version 0.1.5 (latest)

Created 28 June 2021.

A Gradle plugin that adds fully configured JacocoReport tasks for unit tests of each Android application and library project variant.

Using the plugins DSL:

plugins {
  id("com.dicedmelon.gradle.jacoco-android") version "0.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.dicedmelon.gradle:jacoco-android:0.1.5")
  }
}

apply(plugin = "com.dicedmelon.gradle.jacoco-android")

Using the plugins DSL:

plugins {
  id "com.dicedmelon.gradle.jacoco-android" version "0.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.dicedmelon.gradle:jacoco-android:0.1.5"
  }
}

apply plugin: "com.dicedmelon.gradle.jacoco-android"

Learn how to apply plugins to subprojects