summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
blob: 21c233febfc04cad0c711c9237e0f1b501b95dc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
rootProject.name = "seven-wonders"

include("sw-common-model")
include("sw-engine")
include("sw-server")
include("sw-client")
include("sw-ui")
include("sw-bot")

enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
bgstack15