com.raxdenstudios.android-jacoco
Owner: Ángel Gómez García
Allow to include basic configuration for commons modules in Android.
https://github.com/raxden/android-plugins
Sources: https://github.com/raxden/android-plugins.git
Version 0.49 (latest)
0.49
Created 15 December 2022.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Allow to include basic configuration for commons modules in Android.
Using the plugins DSL:
plugins {
id("com.raxdenstudios.android-jacoco") version "0.49"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.raxdenstudios:android-plugins:0.49")
}
}
apply(plugin = "com.raxdenstudios.android-jacoco")
Using the plugins DSL:
plugins {
id "com.raxdenstudios.android-jacoco" version "0.49"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.raxdenstudios:android-plugins:0.49"
}
}
apply plugin: "com.raxdenstudios.android-jacoco"