org.scoverage
Owner: May Fly
gradle-scoverage is a Gradle plugin for calculating code coverage using Scoverage
Sources: https://github.com/scoverage/gradle-scoverage.git
Version 8.1 (latest)
Created 25 June 2024.
gradle-scoverage is a Gradle plugin for calculating code coverage using Scoverage
Add this plugin to your build using the plugins DSL:
plugins {
id("org.scoverage") version "8.1"
}
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("org.scoverage:org.scoverage.gradle.plugin:8.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.scoverage") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.scoverage:org.scoverage.gradle.plugin:8.1") } } apply(plugin = "org.scoverage")
- Applying plugins to all subprojects .