Files
demo-hexagonal/settings.gradle.kts
2022-11-30 04:31:38 +09:00

12 lines
414 B
Kotlin

rootProject.name = "demo-hexagonal"
include("core:demo-core")
findProject(":core:demo-core")?.name = "demo-core"
include("infrastructure:datastore-mariadb")
findProject(":infrastructure:datastore-mariadb")?.name = "datastore-mariadb"
include("server")
include("server:demo-app")
findProject(":server:demo-app")?.name = "demo-app"
include("util:common-util")
findProject(":util:common-util")?.name = "common-util"