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 e887bbc + 7a9ebf4 commit 3bd4a67Copy full SHA for 3bd4a67
build.gradle.kts
@@ -1,3 +1,5 @@
1
+import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
2
+
3
/**
4
* Ktor version.
5
*/
@@ -6,6 +8,7 @@ val ktorVersion: String = "1.3.2"
6
8
plugins {
7
9
application
10
kotlin("jvm") version "1.3.71"
11
+ id("com.github.johnrengelman.shadow") version "5.2.0"
12
}
13
14
group = "app.ryss"
@@ -59,4 +62,8 @@ tasks {
59
62
freeCompilerArgs = freeCompilerArgs + "-Xopt-in=kotlin.RequiresOptIn"
60
63
61
64
65
66
+ "shadowJar"(ShadowJar::class) {
67
+ archiveFileName.set("gateway-service.jar")
68
+ }
69
0 commit comments