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.
2 parents af836fb + aa5739d commit f8c50b7Copy full SHA for f8c50b7
controller-api/build.gradle.kts
@@ -1,3 +1,17 @@
1
+import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
2
+
3
dependencies {
4
api(project(":controller-shared"))
5
+}
6
7
+tasks.named("shadowJar", ShadowJar::class) {
8
+ mergeServiceFiles()
9
+ relocate("com", "app.simplecloud.external.com")
10
+ relocate("google", "app.simplecloud.external.google")
11
+ relocate("io", "app.simplecloud.external.io")
12
+ relocate("org", "app.simplecloud.external.org")
13
+ relocate("javax", "app.simplecloud.external.javax")
14
+ relocate("android", "app.simplecloud.external.android")
15
+ relocate("build.buf.gen.simplecloud", "app.simplecloud.buf")
16
+ archiveFileName.set("${project.name}.jar")
17
}
0 commit comments