Search Gradle plugins

io.github.chiragji.jacotura

Gradle plugin to convert JaCoCo coverage reports to Cobertura coverage reports

https://github.com/chirag-ji/Jacotura

Sources: https://github.com/chirag-ji/Jacotura

Version 1.0.0

1.0.0

Created 11 January 2022.

Gradle plugin to convert JaCoCo coverage reports to Cobertura coverage reports

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.chiragji.jacotura") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.chiragji:jacotura-gradle-plugin:1.0.0")
      }
    }
    
    apply(plugin = "io.github.chiragji.jacotura")
  • Applying plugins to all subprojects .