搜索Gradle插件

版本 8.1.8 (最新)

8.1.8

创建于 2024年7月1日。

来自 https://github.com/johnrengelman/shadow 的分支

使用 plugins DSL

plugins {
  id("io.github.goooler.shadow") version "8.1.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.goooler.shadow:shadow-gradle-plugin:8.1.8")
  }
}

apply(plugin = "io.github.goooler.shadow")

使用 plugins DSL

plugins {
  id "io.github.goooler.shadow" version "8.1.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.goooler.shadow:shadow-gradle-plugin:8.1.8"
  }
}

apply plugin: "io.github.goooler.shadow"

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