Search Gradle plugins

Version 3.0.0-RC1

3.0.0-RC1

Created 06 October 2024.

Plugin that computes code coverage on modified code

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.gw-kit.delta-coverage") version "3.0.0-RC1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.gw-kit:delta-coverage-gradle:3.0.0-RC1")
      }
    }
    
    apply(plugin = "io.github.gw-kit.delta-coverage")
  • Applying plugins to all subprojects .