搜索 Gradle 插件

io.github.andoloido.coverage

所有者: andoloido

在将代码转换为报告时使用 ASM,以报告在代码中使用了哪些类,此插件可以帮助移除未使用代码

https://github.com/andoloido/CodeCoverage

来源: https://github.com/andoloido/CodeCoverage

版本 0.0.4 (最新版)

0.0.4

创建日期:2023年6月30日。

使用 ASM 报告代码转换期间使用的类,此插件可以帮助我们移除未使用代码。

使用 插件 DSL

plugins {
  id("io.github.andoloido.coverage") version "0.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.andoloido.coverage:plugin:0.0.4")
  }
}

apply(plugin = "io.github.andoloido.coverage")

使用 插件 DSL

plugins {
  id "io.github.andoloido.coverage" version "0.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.andoloido.coverage:plugin:0.0.4"
  }
}

apply plugin: "io.github.andoloido.coverage"

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