io.github.estivensh4.jacoco-full-report
所有者: Estiven Sánchez
io.github.estivensh4.jacoco-full-report 插件添加了一个任务,该任务将生成一个 Jacoco 报告,用于显示当前项目所有子项目的测试组合代码覆盖率。
https://github.com/estivensh4/kotlin-libs-publisher
来源: https://github.com/estivensh4/kotlin-libs-publisher
版本 0.0.2 (最新)
0.0.2
创建于 2023年2月23日。
io.github.estivensh4.jacoco-full-report 插件添加了一个任务,该任务将生成一个 Jacoco 报告,用于显示当前项目所有子项目的测试组合代码覆盖率。
使用插件 DSL
plugins {
id("io.github.estivensh4.jacoco-full-report") version "0.0.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.estivensh4:kotlin-libs-publisher:0.0.2")
}
}
apply(plugin = "io.github.estivensh4.jacoco-full-report")
使用插件 DSL
plugins {
id "io.github.estivensh4.jacoco-full-report" version "0.0.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.estivensh4:kotlin-libs-publisher:0.0.2"
}
}
apply plugin: "io.github.estivensh4.jacoco-full-report"