-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
39 lines (29 loc) · 1.13 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
rootProject.name = "3days-server"
// support
include(":support:common")
project(":support:common").projectDir = file("support/common")
include(":support:jacoco")
project(":support:jacoco").projectDir = file("support/jacoco")
// domain
include(":domain")
project(":domain").projectDir = file("domain")
// application
include(":application")
project(":application").projectDir = file("application")
// infrastructure
include(":infrastructure:persistence")
project(":infrastructure:persistence").projectDir = file("infrastructure/persistence")
include(":infrastructure:sms")
project(":infrastructure:sms").projectDir = file("infrastructure/sms")
include(":infrastructure:redis")
project(":infrastructure:redis").projectDir = file("infrastructure/redis")
include(":infrastructure:rest")
project(":infrastructure:rest").projectDir = file("infrastructure/rest")
include(":infrastructure:aws")
project(":infrastructure:aws").projectDir = file("infrastructure/aws")
// bootstrap
include(":bootstrap:api")
project(":bootstrap:api").projectDir = file("bootstrap/api")