Dieser Commit ist enthalten in:
yoyosource 2022-05-10 10:03:47 +02:00
Ursprung cc98ee7036
Commit fa68ad9cfc

Datei anzeigen

@ -90,22 +90,6 @@ task buildProject {
dependsOn build
}
task finalizeProject {
description 'Finalize this project'
group "Steamwar"
doLast {
if ("${buildDir}" == null) {
return
}
delete fileTree("${libs}").matching {
exclude("${uberJarName}")
}
file(libs + "/" + uberJarName).renameTo(file(libs + "/" + jarName))
}
}
build.finalizedBy(finalizeProject)
task testOutput {
description 'Print Test output'
group "Build"