Update build.gradle
Changed classifier to archiveClassifier
This commit is contained in:
parent
c825f60eb1
commit
2762744a84
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ application {
|
||||||
manifest {
|
manifest {
|
||||||
attributes "Main-Class": getMainClass(), "Implementation-Version": project.version
|
attributes "Main-Class": getMainClass(), "Implementation-Version": project.version
|
||||||
}
|
}
|
||||||
classifier = 'all'
|
archiveClassifier = 'all'
|
||||||
dependsOn configurations.runtimeClasspath
|
dependsOn configurations.runtimeClasspath
|
||||||
from {
|
from {
|
||||||
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
||||||
|
|
Loading…
Reference in a new issue