Search Gradle plugins

Version 8.1.7 (latest)

Created 05 March 2024.

A fork of https://github.com/johnrengelman/shadow

Using the plugins DSL:

plugins {
  id("io.github.goooler.shadow") version "8.1.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.goooler.shadow:shadow-gradle-plugin:8.1.7")
  }
}

apply(plugin = "io.github.goooler.shadow")

Using the plugins DSL:

plugins {
  id "io.github.goooler.shadow" version "8.1.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.goooler.shadow:shadow-gradle-plugin:8.1.7"
  }
}

apply plugin: "io.github.goooler.shadow"

Learn how to apply plugins to subprojects