com.github.bjornvester.openclover
所有者: Bjørn Mølgård Vester
将OpenClover测试覆盖率报告添加到您的项目。请注意,此插件尚未完成,但应适用于所有基本的Java和Groovy项目。
https://github.com/bjornvester/openclover-gradle-plugin
源代码: https://github.com/bjornvester/openclover-gradle-plugin
使用插件DSL
plugins {
id("com.github.bjornvester.openclover") version "0.5.2"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.bjornvester:openclover-gradle-plugin:0.5.2")
}
}
apply(plugin = "com.github.bjornvester.openclover")
使用插件DSL
plugins {
id "com.github.bjornvester.openclover" version "0.5.2"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.bjornvester:openclover-gradle-plugin:0.5.2"
}
}
apply plugin: "com.github.bjornvester.openclover"