mirror of
https://github.com/xHyroM/lighteco.git
synced 2024-11-10 01:18:07 +01:00
12 lines
215 B
Text
12 lines
215 B
Text
rootProject.name = "lighteco-parent"
|
|
|
|
sequenceOf(
|
|
"api",
|
|
"common",
|
|
"bukkit",
|
|
"bukkittest",
|
|
"velocity"
|
|
).forEach {
|
|
include("lighteco-$it")
|
|
project(":lighteco-$it").projectDir = file(it)
|
|
}
|