AuthMeVelocity/settings.gradle.kts
2022-08-05 02:03:48 +00:00

11 lines
331 B
Plaintext

rootProject.name = "authmevelocity-parent"
listOf("common", "paper", "velocity").forEach {
include("authmevelocity-$it")
project(":authmevelocity-$it").projectDir = file(it)
}
listOf("paper", "velocity").forEach {
include("authmevelocity-api-$it")
project(":authmevelocity-api-$it").projectDir = file("api/$it")
}