Migrate Sponge, Libs to Kotlin DSL

This commit is contained in:
Kenzie Togami
2019-07-10 17:59:23 -07:00
parent 3bdc1c1cf2
commit 5a14693aa9
5 changed files with 57 additions and 57 deletions

View File

@ -1,3 +0,0 @@
tasks.register("build") {
dependsOn(subprojects.collect { it.tasks.named("build") })
}

View File

@ -0,0 +1,3 @@
tasks.register("build") {
dependsOn(subprojects.map { it.tasks.named("build") })
}