搜索 Gradle 插件

版本 0.33(最新版)

0.33

创建于 2021 年 2 月 22 日。

本插件版本在 JCenter 成为 Maven Central 的永久重定向后将不再可用,因为它仅使用在 JCenter 中可找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 允许在 Android 中包含常见模块的基本配置。

使用 插件 DSL

plugins {
  id("com.raxdenstudios.jacoco-report") version "0.33"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.raxdenstudios:android-plugins:0.33")
  }
}

apply(plugin = "com.raxdenstudios.jacoco-report")

使用 插件 DSL

plugins {
  id "com.raxdenstudios.jacoco-report" version "0.33"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.raxdenstudios:android-plugins:0.33"
  }
}

apply plugin: "com.raxdenstudios.jacoco-report"

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