com.mobilesolutionworks.gradle.jacoco
Owner:
Yunarta Kartawahyudi
Plugin to reduce code duplication especially when writing Gradle plugin project
https://github.com/yunarta/works-jacoco-gradle-plugin
Sources: https://github.com/yunarta/works-jacoco-gradle-plugin
Version 1.1.4 (latest)
Created 06 August 2018.
Plugin to reduce code duplication when writing Gradle plugin project
Add this plugin to your build using the plugins DSL:
plugins {
id("com.mobilesolutionworks.gradle.jacoco") version "1.1.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.mobilesolutionworks.gradle.jacoco:com.mobilesolutionworks.gradle.jacoco.gradle.plugin:1.1.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.mobilesolutionworks.gradle.jacoco") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.mobilesolutionworks.gradle.jacoco:com.mobilesolutionworks.gradle.jacoco.gradle.plugin:1.1.4") } } apply(plugin = "com.mobilesolutionworks.gradle.jacoco")
- Applying plugins to all subprojects .