forked from team-chang-ppo/location_tracking_module_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
21 lines (17 loc) · 851 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
rootProject.name = 'location_tracking_module'
include(':services:gateway:gateway_server')
include('services:gateway:gateway_domain')
include(':services:monitoring:monitoring_server')
findProject(':services:gateway:gateway_domain')?.name = 'gateway_domain'
include 'services:monitoring:monitoring_domain'
findProject(':services:monitoring:monitoring_domain')?.name = 'monitoring_domain'
include(':services:account:account_server-api')
include(':services:account:account_server-batch')
include('services:account:account_core:account_domain')
include('services:account:account_core:account_infra')
include('services:account:account_utils')
findProject(':services:account:account_utils')?.name = 'account_utils'
include(':services:tracking:tracking_server')
include(':utils:jwt')
include(':utils:domain')
findProject(':utils:domain')?.name = 'domain'