搜索Gradle插件

io.github.estivensh4.jacoco-coverage

所有者: Estiven Sánchez

io.github.estivensh4.jacoco-coverage插件允许Gradle构建脚本为项目、包、类和文件配置最小Java代码覆盖率阈值。

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-coverage插件允许Gradle构建脚本为项目、包、类和文件配置最小Java代码覆盖率阈值。

使用 插件DSL

plugins {
  id("io.github.estivensh4.jacoco-coverage") 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-coverage")

使用 插件DSL

plugins {
  id "io.github.estivensh4.jacoco-coverage" 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-coverage"

学习如何将插件应用于子项目