Search Gradle plugins

Version 2.2.8

Created 05 April 2015.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.saliman:gradle-cobertura-plugin:2.2.8")
  }
}

apply(plugin = "net.saliman.cobertura")

Using the plugins DSL:

plugins {
  id "net.saliman.cobertura" version "2.2.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.saliman:gradle-cobertura-plugin:2.2.8"
  }
}

apply plugin: "net.saliman.cobertura"

Learn how to apply plugins to subprojects