com.github.johnrengelman.plugin-shadow
Owner: John Engelman
Auto configures shadow & package relocation for Gradle plugins.
https://github.com/johnrengelman/shadow
Sources: https://github.com/johnrengelman/shadow
Version 2.0.3 (latest)
2.0.3
Created 24 March 2018.
Auto configures shadow & package relocation for Gradle plugins.
Using the plugins DSL:
plugins {
id("com.github.johnrengelman.plugin-shadow") version "2.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.jengelman.gradle.plugins:shadow:2.0.3")
}
}
apply(plugin = "com.github.johnrengelman.plugin-shadow")
Using the plugins DSL:
plugins {
id "com.github.johnrengelman.plugin-shadow" version "2.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.3"
}
}
apply plugin: "com.github.johnrengelman.plugin-shadow"