net.saliman.cobertura
Owner: Steven C. Saliman
A Gradle plugin for working with the Cobertura code coverage tool.
https://github.com/stevesaliman/gradle-cobertura-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("net.saliman.cobertura") version "2.5.4"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.saliman:gradle-cobertura-plugin:2.5.4") } } apply(plugin = "net.saliman.cobertura")
- Applying plugins to all subprojects .