Search Gradle plugins

com.github.johnrengelman.shadow

A Gradle plugin for collapsing all dependencies and project code into a single Jar file.

https://github.com/johnrengelman/shadow

Version 7.0.0

Created 26 April 2021.

Gradle plugin to create fat/uber JARs, apply file transforms, and relocate packages for applications and libraries. Gradle version of Maven's Shade plugin.

Using the plugins DSL:

plugins {
  id("com.github.johnrengelman.shadow") version "7.0.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.johnrengelman.shadow" version "7.0.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects