Search Gradle plugins

net.saliman.cobertura

A Gradle plugin for working with the Cobertura code coverage tool.

https://github.com/stevesaliman/gradle-cobertura-plugin

Version 2.5.1

2.5.1

Created 22 October 2017.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.saliman.cobertura") version "2.5.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.saliman:gradle-cobertura-plugin:2.5.1")
      }
    }
    
    apply(plugin = "net.saliman.cobertura")
  • Applying plugins to all subprojects .