com.github.bjornvester.openclover
Owner: Bjørn Mølgård Vester
Adds OpenClover test coverage reporting to your project. Please note that this plugin is not yet finished, but should be working for all basic Java and Groovy projects.
https://github.com/bjornvester/openclover-gradle-plugin
Sources: https://github.com/bjornvester/openclover-gradle-plugin
Using the plugins DSL:
plugins {
id("com.github.bjornvester.openclover") version "0.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.bjornvester:openclover-gradle-plugin:0.5.2")
}
}
apply(plugin = "com.github.bjornvester.openclover")
Using the plugins DSL:
plugins {
id "com.github.bjornvester.openclover" version "0.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.bjornvester:openclover-gradle-plugin:0.5.2"
}
}
apply plugin: "com.github.bjornvester.openclover"