xenoterracide
08/22/2018, 11:16 PMtasks.apply {
val toAll: (Task).() -> Unit = {
gradle.includedBuilds.forEach { this.dependsOn(it.task(":" + this.name)) }
}
register("build", toAll)
register("clean", toAll)
register("wrapper", toAll)
}