com.github.johnrengelman.plugin-shadow
所有者: John Engelman
自动为 Gradle 插件配置 shadow 及包重定位。
https://github.com/johnrengelman/shadow
源代码: https://github.com/johnrengelman/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"