Skip to content
This repository was archived by the owner on Mar 8, 2024. It is now read-only.

Commit 75e3439

Browse files
committed
Add task to build mining pipeline fat JAR
1 parent 8c7fb1d commit 75e3439

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

modules/application/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,16 @@ dependencies {
2222

2323
compile group: "commons-cli", name: "commons-cli", version: commonsCliVersion
2424
}
25+
26+
// Distribution
27+
inspectClassesForKotlinIC.enabled = false
28+
29+
jar {
30+
manifest {
31+
attributes "Main-Class": mainClassName
32+
}
33+
34+
from {
35+
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
36+
}
37+
}

0 commit comments

Comments
 (0)