Search Gradle plugins

org.openrewrite.build.shadow

Configures the Gradle Shadow plugin to replace the normal jar task output with the shaded jar without a classifier

https://github.com/openrewrite/rewrite-build-gradle-plugin

Sources: https://github.com/openrewrite/rewrite-build-gradle-plugin.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.openrewrite.build.shadow") version "1.8.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.openrewrite:rewrite-build-gradle-plugin:1.8.2")
      }
    }
    
    apply(plugin = "org.openrewrite.build.shadow")
  • Applying plugins to all subprojects .