22 lines
555 B
Plaintext
22 lines
555 B
Plaintext
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
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")
|
|
}
|
|
|
|
pluginManagement {
|
|
includeBuild("build-logic")
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
} |