We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 007e2ec commit 2fb259cCopy full SHA for 2fb259c
symbol-processing/build.gradle.kts
@@ -16,7 +16,9 @@ dependencies {
16
17
tasks.withType<ShadowJar>() {
18
archiveClassifier.set("")
19
- from(packedJars)
+ // ShadowJar picks up the `compile` configuration by default and pulls stdlib in.
20
+ // Therefore, specifying another configuration instead.
21
+ configurations = listOf(packedJars)
22
relocate("com.intellij", "org.jetbrains.kotlin.com.intellij")
23
}
24
0 commit comments