mirror of
https://github.com/bronson-g/kompendium.git
synced 2025-12-23 22:18:33 -05:00
25 lines
452 B
Kotlin
25 lines
452 B
Kotlin
rootProject.name = "kompendium"
|
|
|
|
include("core")
|
|
include("enrichment")
|
|
include("oas")
|
|
include("playground")
|
|
include("locations")
|
|
include("json-schema")
|
|
include("protobuf-java-converter")
|
|
include("resources")
|
|
|
|
run {
|
|
rootProject.children.forEach { it.name = "${rootProject.name}-${it.name}" }
|
|
}
|
|
|
|
// Feature Previews
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenLocal()
|
|
}
|
|
}
|