Skip to content

Commit 9fb67a7

Browse files
committed
Add additional relocations for dependencies in velocity
1 parent 1292ab7 commit 9fb67a7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

velocity/build.gradle.kts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,16 @@ tasks.withType<ShadowJar> {
3838
val relocatePath = "it.renvins.serverpulse.velocity.libs"
3939

4040
relocate("com.influxdb", "$relocatePath.influxdb")
41+
relocate("okhttp3", "$relocatePath.okhttp3")
42+
relocate("okio", "$relocatePath.okio")
43+
relocate("org.jetbrains", "$relocatePath.jetbrains")
44+
relocate("com.google", "$relocatePath.google")
45+
relocate("io.reactivex", "$relocatePath.reactivex")
46+
relocate("javax.annotation", "$relocatePath.annotation")
47+
relocate("org.apache", "$relocatePath.apache")
48+
relocate("org.intellij", "$relocatePath.intellij")
49+
relocate("org.reactivestreams", "$relocatePath.reactivestreams")
50+
relocate("retrofit2", "$relocatePath.retrofit2")
51+
relocate("kotlin", "$relocatePath.kotlin") // Relocate instead of exclude
52+
relocate("org.jetbrains.kotlin", "$relocatePath.jetbrains.kotlin") // Relocate instead of exclude
4153
}

0 commit comments

Comments
 (0)