mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
Add fatJar gradle task to create a single executable jar file
This commit is contained in:
parent
1fae09433d
commit
f884175748
2 changed files with 21 additions and 3 deletions
|
@ -65,3 +65,17 @@ tasks.withType<Jar> {
|
|||
)
|
||||
}
|
||||
}
|
||||
|
||||
task("fatJar", type = Jar::class) {
|
||||
archiveBaseName.set("${project.name}-fat")
|
||||
exclude(
|
||||
"META-INF/*.SF",
|
||||
"META-INF/*.DSA",
|
||||
"META-INF/*.RSA",
|
||||
"META-INF/NOTICE",
|
||||
"META-INF/LICENSE",
|
||||
"**/module-info.class"
|
||||
)
|
||||
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) })
|
||||
with(tasks.jar.get() as CopySpec)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue