搜索Gradle插件

net.saliman.cobertura

一个用于与Cobertura代码覆盖率工具一起工作的Gradle插件。

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

版本 4.0.0 (最新版本)

4.0.0

创建于2020年10月31日。

暂无版本描述。

使用 插件DSL

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

使用 旧插件应用

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

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

使用 插件DSL

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

使用 旧插件应用

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

apply plugin: "net.saliman.cobertura"

了解如何将插件应用到子项目中