Search Gradle plugins

Version 0.0.2 (latest)

0.0.2

Created 15 October 2021.

Process jacoco report and print the code coverage to the Azure DevOps

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.intermedia.printcoverage") version "0.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.intermedia:printcoverage:0.0.2")
      }
    }
    
    apply(plugin = "com.intermedia.printcoverage")
  • Applying plugins to all subprojects .