name.remal.jacoco-to-cobertura
拥有者: 谢苗·列文
将Jacoco XML报告转换为Cobertura格式以导入GitLab CI覆盖率报告工件
https://github.com/remal-gradle-plugins/jacoco-to-cobertura
来源: https://github.com/remal-gradle-plugins/jacoco-to-cobertura
使用插件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"