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 8.1.1 (latest)

Created 20 March 2023.

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 "8.1.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects