Search Gradle plugins

Version 1.0.4

Created 10 December 2024.

Convert Jacoco XML reports to Cobertura format for importing in GitLab CI coverage report artifact

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.jacoco-to-cobertura") version "1.0.4"
}

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("name.remal.jacoco-to-cobertura:name.remal.jacoco-to-cobertura.gradle.plugin:1.0.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("name.remal.jacoco-to-cobertura")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal.jacoco-to-cobertura:name.remal.jacoco-to-cobertura.gradle.plugin:1.0.4")
      }
    }
    
    apply(plugin = "name.remal.jacoco-to-cobertura")
  • Applying plugins to all subprojects .