org.openrewrite.build.shadow
Owner: Moderne, Inc.
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
Version 1.15.0
1.15.0
Created 25 April 2024.
Configures the Gradle Shadow plugin to replace the normal jar task output with the shaded jar without a classifier
Add this plugin to your build using the plugins DSL:
plugins {
id("org.openrewrite.build.shadow") version "1.15.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.openrewrite:rewrite-build-gradle-plugin:1.15.0") } } apply(plugin = "org.openrewrite.build.shadow")
- Applying plugins to all subprojects .