mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-07 00:38:26 +07:00
Updated to gradle 6.0
This commit is contained in:
@ -40,7 +40,7 @@ task dist(type: Jar, dependsOn: classes){
|
||||
from {configurations.compile.collect {zipTree(it)}}
|
||||
from files(project.assetsDir)
|
||||
|
||||
archiveName = "${appName}.jar"
|
||||
archiveFileName = "${appName}.jar"
|
||||
|
||||
manifest{
|
||||
attributes 'Main-Class': project.mainClassName
|
||||
@ -163,8 +163,8 @@ PackrConfig.Platform.values().each{ platform ->
|
||||
|
||||
task "zip${platform.toString()}"(type: Zip){
|
||||
from "build/packr/output"
|
||||
archiveName "${generateDeployName(platform.toString())}.zip"
|
||||
destinationDir(file("../deploy"))
|
||||
archiveFileName = "${generateDeployName(platform.toString())}.zip"
|
||||
destinationDirectory = (file("../deploy"))
|
||||
|
||||
doLast{
|
||||
delete{
|
||||
|
Reference in New Issue
Block a user