Update build.gradle

Changed classifier  to archiveClassifier
This commit is contained in:
afischerdev 2023-07-12 13:01:59 +02:00 committed by GitHub
parent c825f60eb1
commit 2762744a84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ application {
manifest {
attributes "Main-Class": getMainClass(), "Implementation-Version": project.version
}
classifier = 'all'
archiveClassifier = 'all'
dependsOn configurations.runtimeClasspath
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }