搜索Gradle插件

版本 1.0.0(最新版)

1.0.0

创建于2023年1月31日。

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

使用插件DSL

plugins {
  id("net.smoofyuniverse.jacoco-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-offline")

使用插件DSL

plugins {
  id "net.smoofyuniverse.jacoco-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-offline"

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