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.5

Created 17 June 2019.

Changes: Reduce logging on INFO level

Using the plugins DSL:

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

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

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

Using the plugins DSL:

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

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"
  }
}

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

Learn how to apply plugins to subprojects