搜索Gradle插件

版本 1.8.0 (最新版)

1.8.0

创建于 2024年4月11日。

一个用于简化Android项目中多个模块组合代码覆盖报告生成的Gradle插件。

使用 插件DSL

plugins {
  id("nl.neotech.plugin.rootcoverage") version "1.8.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("nl.neotech.plugin:android-root-coverage-plugin:1.8.0")
  }
}

apply(plugin = "nl.neotech.plugin.rootcoverage")

使用 插件DSL

plugins {
  id "nl.neotech.plugin.rootcoverage" version "1.8.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "nl.neotech.plugin:android-root-coverage-plugin:1.8.0"
  }
}

apply plugin: "nl.neotech.plugin.rootcoverage"

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