Skip to content

Commit 7d44ce9

Browse files
feat: exclude Kotlin dependencies from shadowJar configuration
1 parent a64dde7 commit 7d44ce9

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

surf-api-velocity/surf-api-velocity-server/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ tasks {
2424
shadowJar {
2525
val relocationPrefix: String by project
2626
relocate("it.unimi.dsi.fastutil", "$relocationPrefix.fastutil")
27+
28+
dependencies {
29+
exclude(dependency("org.jetbrains.kotlin:.*"))
30+
}
2731
}
2832
}
2933

0 commit comments

Comments
 (0)