Search Gradle plugins

Version 0.2.4 (latest)

0.2.4

Created 03 June 2021.

Jacoco Badge Generator

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.dawnwords.jacoco.badge") version "0.2.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.dawnwords:jacoco-badge-gradle-plugin:0.2.4")
      }
    }
    
    apply(plugin = "com.github.dawnwords.jacoco.badge")
  • Applying plugins to all subprojects .