Search Gradle plugins

com.github.bjornvester.openclover

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

Version 0.1

Created 01 June 2019.

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.

Using the plugins DSL:

plugins {
  id("com.github.bjornvester.openclover") version "0.1"
}

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.1")
  }
}

apply(plugin = "com.github.bjornvester.openclover")

Using the plugins DSL:

plugins {
  id "com.github.bjornvester.openclover" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.bjornvester:openclover-gradle-plugin:0.1"
  }
}

apply plugin: "com.github.bjornvester.openclover"

Learn how to apply plugins to subprojects