搜索Gradle插件

版本 1.0.0 (最新)

1.0.0

创建于2024年5月15日。

将Jacoco XML报告转换为Cobertura格式以导入GitLab CI覆盖率报告工件

使用插件DSL

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

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("name.remal.gradle-plugins.jacoco-to-cobertura:jacoco-to-cobertura:1.0.0")
  }
}

apply(plugin = "name.remal.jacoco-to-cobertura")

使用插件DSL

plugins {
  id "name.remal.jacoco-to-cobertura" version "1.0.0"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "name.remal.gradle-plugins.jacoco-to-cobertura:jacoco-to-cobertura:1.0.0"
  }
}

apply plugin: "name.remal.jacoco-to-cobertura"

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