We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ShadowJavaPlugin
1 parent e76f49a commit 70cfa6fCopy full SHA for 70cfa6f
src/main/kotlin/com/github/jengelman/gradle/plugins/shadow/ShadowPlugin.kt
@@ -19,6 +19,10 @@ public abstract class ShadowPlugin : Plugin<Project> {
19
withType(ApplicationPlugin::class.java) {
20
apply(ShadowApplicationPlugin::class.java)
21
}
22
+ withId("org.jetbrains.kotlin.multiplatform") {
23
+ apply(ShadowJavaPlugin::class.java)
24
+ }
25
+
26
// Apply the legacy plugin last.
27
// Because we apply the ShadowJavaPlugin/ShadowApplication plugin in a withType callback for the
28
// respective JavaPlugin/ApplicationPlugin, it may still apply before the shadowJar task is created etc.
0 commit comments