搜索 Gradle 插件

版本 2.0.3 (最新版)

2.0.3

创建于 2018 年 3 月 24 日。

自动为 Gradle 插件配置 shadow 及包重定位。

使用 插件的 DSL

plugins {
  id("com.github.johnrengelman.plugin-shadow") version "2.0.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.jengelman.gradle.plugins:shadow:2.0.3")
  }
}

apply(plugin = "com.github.johnrengelman.plugin-shadow")

使用 插件的 DSL

plugins {
  id "com.github.johnrengelman.plugin-shadow" version "2.0.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.jengelman.gradle.plugins:shadow:2.0.3"
  }
}

apply plugin: "com.github.johnrengelman.plugin-shadow"

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