Search Gradle plugins

io.github.flaxoos.kover-badge

Owner: Ido Flax

A plugin to generate and coverage badges for Kotlin Kover reports and embed them in readme files

https://github.com/flaxoos/flax-gradle-plugins

Sources: https://github.com/flaxoos/flax-gradle-plugins

Version 0.0.6 (latest)

Created 14 September 2023.

A plugin to generate and coverage badges for Kotlin Kover reports and embed them in readme files

Using the plugins DSL:

plugins {
  id("io.github.flaxoos.kover-badge") version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.flaxoos:kover-badge:0.0.6")
  }
}

apply(plugin = "io.github.flaxoos.kover-badge")

Using the plugins DSL:

plugins {
  id "io.github.flaxoos.kover-badge" version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.flaxoos:kover-badge:0.0.6"
  }
}

apply plugin: "io.github.flaxoos.kover-badge"

Learn how to apply plugins to subprojects