-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
35 lines (32 loc) · 1.38 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
}
includeBuild("build-logic")
}
rootProject.name = "study-crm"
includeBuild("platforms")
includeBuild("auth-service/auth-service-api-messaging")
includeBuild("auth-service/auth-service-api-web")
includeBuild("auth-service/auth-service-domain")
includeBuild("auth-service/auth-service-main")
includeBuild("auth-service/auth-service-messaging")
includeBuild("auth-service/auth-service-persistence")
includeBuild("auth-service/auth-service-web")
includeBuild("common/common-domain")
includeBuild("common/common-web")
includeBuild("entity-service/entity-service-api-web")
includeBuild("entity-service/entity-service-domain")
includeBuild("entity-service/entity-service-main")
includeBuild("entity-service/entity-service-layout")
includeBuild("entity-service/entity-service-persistence")
includeBuild("entity-service/entity-service-web")
includeBuild("organization-service/organization-service-api-messaging")
includeBuild("organization-service/organization-service-api-web")
includeBuild("organization-service/organization-service-domain")
includeBuild("organization-service/organization-service-main")
includeBuild("organization-service/organization-service-persistence")
includeBuild("organization-service/organization-service-sagas")
includeBuild("organization-service/organization-service-web")