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