mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-14 22:55:15 +01:00
18 lines
362 B
Plaintext
18 lines
362 B
Plaintext
|
|
||
|
tasks.register("clean") {
|
||
|
gradle.includedBuilds.forEach {
|
||
|
dependsOn(it.task(":clean"))
|
||
|
}
|
||
|
|
||
|
doFirst {
|
||
|
if (!file("build").deleteRecursively())
|
||
|
throw java.io.IOException("Failed to delete build directory!")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.register("build") {
|
||
|
gradle.includedBuilds.forEach {
|
||
|
dependsOn(it.task(":release"))
|
||
|
}
|
||
|
}
|