Files
kompendium/settings.gradle.kts
2022-08-13 12:59:59 -04:00

22 lines
374 B
Plaintext

rootProject.name = "kompendium"
include("core")
include("oas")
include("playground")
include("locations")
include("json-schema")
run {
rootProject.children.forEach { it.name = "${rootProject.name}-${it.name}" }
}
// Feature Previews
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
mavenLocal()
}
}