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.2 (latest)

Created 05 February 2021.

Changes: Minor tweaks

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.bjornvester.openclover:com.github.bjornvester.openclover.gradle.plugin:0.5.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.bjornvester.openclover")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.bjornvester.openclover:com.github.bjornvester.openclover.gradle.plugin:0.5.2")
      }
    }
    
    apply(plugin = "com.github.bjornvester.openclover")
  • Applying plugins to all subprojects .