net.razvan.jacoco-to-cobertura
Owner: Razvan Bunea
This plugin converts jacoco xml reports to cobertura. Make sure the jacocoTestReport runs before.
https://github.com/razvn/jacoco-to-cobertura-gradle-plugin
Sources: https://github.com/razvn/jacoco-to-cobertura-gradle-plugin
Version 1.2.0 (latest)
Created 09 July 2023.
This plugin converts jacoco xml reports to cobertura. Make sure the `jacocoTestReport` runs before.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.razvan.jacoco-to-cobertura") version "1.2.0"
}
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("net.razvan.jacoco-to-cobertura:net.razvan.jacoco-to-cobertura.gradle.plugin:1.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("net.razvan.jacoco-to-cobertura") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.razvan.jacoco-to-cobertura:net.razvan.jacoco-to-cobertura.gradle.plugin:1.2.0") } } apply(plugin = "net.razvan.jacoco-to-cobertura")
- Applying plugins to all subprojects .