-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
45 lines (31 loc) · 1.56 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
40
41
42
43
44
45
rootProject.name = "idle-server"
include(":idle-presentation")
project(":idle-presentation").projectDir = file("idle-presentation")
include(":idle-application")
project(":idle-application").projectDir = file("idle-application")
include(":idle-domain")
project(":idle-domain").projectDir = file("idle-domain")
include(":idle-batch")
project(":idle-batch").projectDir = file("idle-batch")
// infrastructure modules
include(":idle-infrastructure:aws")
project(":idle-infrastructure:aws").projectDir = file("idle-infrastructure/aws")
include(":idle-infrastructure:client")
project(":idle-infrastructure:client").projectDir = file("idle-infrastructure/client")
include(":idle-infrastructure:sms")
project(":idle-infrastructure:sms").projectDir = file("idle-infrastructure/sms")
include(":idle-infrastructure:fcm")
project(":idle-infrastructure:fcm").projectDir = file("idle-infrastructure/fcm")
include(":idle-infrastructure:monitoring")
project(":idle-infrastructure:monitoring").projectDir = file("idle-infrastructure/monitoring")
// support modules
include(":idle-support:common")
project(":idle-support:common").projectDir = file("idle-support/common")
include(":idle-support:jacoco")
project(":idle-support:jacoco").projectDir = file("idle-support/jacoco")
include(":idle-support:logging")
project(":idle-support:logging").projectDir = file("idle-support/logging")
include(":idle-support:transfer")
project(":idle-support:transfer").projectDir = file("idle-support/transfer")
include(":idle-support:security")
project(":idle-support:security").projectDir = file("idle-support/security")