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
Using the plugins DSL:
plugins {
id("net.saliman.cobertura") version "2.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.saliman:gradle-cobertura-plugin:2.4.0")
}
}
apply(plugin = "net.saliman.cobertura")
Using the plugins DSL:
plugins {
id "net.saliman.cobertura" version "2.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.saliman:gradle-cobertura-plugin:2.4.0"
}
}
apply plugin: "net.saliman.cobertura"