Owner:
Sergii Gnatiuk
Plugin that computes code coverage on modified code
Version 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:
-
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("io.github.gw-kit.delta-coverage:io.github.gw-kit.delta-coverage.gradle.plugin:3.0.0-RC1") }It can then be applied in the precompiled script plugin:plugins { id("io.github.gw-kit.delta-coverage") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.gw-kit.delta-coverage:io.github.gw-kit.delta-coverage.gradle.plugin:3.0.0-RC1") } } apply(plugin = "io.github.gw-kit.delta-coverage") - Applying plugins to all subprojects .