mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-05 02:19:37 +01:00
30 lines
592 B
Plaintext
30 lines
592 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"))
|
|
}
|
|
}
|
|
|
|
tasks.register("test") {
|
|
gradle.includedBuilds.forEach {
|
|
dependsOn(it.task(":test"))
|
|
}
|
|
}
|
|
|
|
tasks.register("spotlessApply") {
|
|
gradle.includedBuilds.forEach {
|
|
dependsOn(it.task(":spotlessApply"))
|
|
}
|
|
}
|