搜索Gradle插件

版本 1.0.0 (最新版)

1.0.0

创建于 2023年1月31日。

支持离线插装的官方Jacoco插件的分支。

使用 plugins DSL

plugins {
  id("net.smoofyuniverse.jacoco-report-aggregation-offline") version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.smoofyuniverse:jacoco-offline:1.0.0")
  }
}

apply(plugin = "net.smoofyuniverse.jacoco-report-aggregation-offline")

使用 plugins DSL

plugins {
  id "net.smoofyuniverse.jacoco-report-aggregation-offline" version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.smoofyuniverse:jacoco-offline:1.0.0"
  }
}

apply plugin: "net.smoofyuniverse.jacoco-report-aggregation-offline"

了解如何通过子项目应用插件