搜索Gradle插件

io.github.chiragji.jacotura

所有者: Chirag Gupta

将JaCoCo覆盖率报告转换为Cobertura覆盖率报告的Gradle插件

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

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

版本 1.1.2(最新版本)

1.1.2

创建于 2023年6月21日。

将JaCoCo覆盖率报告转换为Cobertura覆盖率报告的Gradle插件

使用 plugins DSL

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

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.chiragji:jacotura-gradle-plugin:1.1.2")
  }
}

apply(plugin = "io.github.chiragji.jacotura")

使用 plugins DSL

plugins {
  id "io.github.chiragji.jacotura" version "1.1.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.chiragji:jacotura-gradle-plugin:1.1.2"
  }
}

apply plugin: "io.github.chiragji.jacotura"

了解如何将插件应用到子项目中