forked from Garamgaebee/BE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
70 lines (59 loc) · 4.76 KB
/
Copy pathsettings.gradle
File metadata and controls
70 lines (59 loc) · 4.76 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
rootProject.name = 'BE'
include 'common'
include 'team-service', 'team-service:team-container', 'team-service:team-application', 'team-service:team-dataaccess','team-service:team-dataaccess:team-mysql' ,'team-service:team-domain', 'team-service:team-domain:team-application-service', 'team-service:team-domain:team-domain-core', 'team-service:team-messaging'
include 'member-service', 'member-service:member-application', 'member-service:member-container', 'member-service:member-dataaccess' , 'member-service:member-domain', 'member-service:member-messaging'
include 'member-service:member-domain:member-application-service'
include 'member-service:member-domain:member-domain-core'
include 'thread-service','thread-service:thread-container', 'thread-service:thread-application', 'thread-service:thread-dataaccess', 'thread-service:thread-domain', 'thread-service:thread-messaging'
include 'thread-service:thread-domain:thread-application-service', 'thread-service:thread-domain:thread-domain-core'
include 'image-service', 'image-service:image-application', 'image-service:image-dataaccess', 'image-service:image-container','image-service:image-domain', 'image-service:image-domain:image-application-service','image-service:image-domain:image-domain-core', 'image-service:image-dataaccess:image-s3'
// auth-service
include 'auth-service'
include 'auth-service:auth-container'
findProject(':auth-service:auth-container')?.name = 'auth-container'
include 'auth-service:auth-application'
findProject(':auth-service:auth-application')?.name = 'auth-application'
include 'auth-service:auth-dataaccess'
findProject(':auth-service:auth-dataaccess')?.name = 'auth-dataaccess'
include 'auth-service:auth-dataaccess:auth-mysql-dataaccess'
findProject(':auth-service:auth-dataaccess:auth-mysql-dataaccess')?.name = 'auth-mysql-dataaccess'
include 'auth-service:auth-dataaccess:auth-redis-dataaccess'
findProject(':auth-service:auth-dataaccess:auth-redis-dataaccess')?.name = 'auth-redis-dataaccess'
include 'auth-service:auth-domain'
findProject(':auth-service:auth-domain')?.name = 'auth-domain'
include 'auth-service:auth-domain:auth-application-service'
findProject(':auth-service:auth-domain:auth-application-service')?.name = 'auth-application-service'
include 'auth-service:auth-domain:auth-domain-core'
findProject(':auth-service:auth-domain:auth-domain-core')?.name = 'auth-domain-core'
include 'auth-service:auth-messaging'
findProject(':auth-service:auth-messaging')?.name = 'auth-messaging'
include 'auth-service:auth-messaging:auth-openfeign-messaging'
findProject(':auth-service:auth-messaging:auth-openfeign-messaging')?.name = 'auth-openfeign-messaging'
include 'auth-service:auth-messaging:auth-webclient-messaging'
findProject(':auth-service:auth-messaging:auth-webclient-messaging')?.name = 'auth-webclient-messaging'
include 'auth-service:auth-messaging:auth-mail-messaging'
findProject(':auth-service:auth-messaging:auth-mail-messaging')?.name = 'auth-mail-messaging'
//
include 'api-gateway'
include 'eureka-server'
include 'notification-service'
include 'notification-service:notification-application'
findProject(':notification-service:notification-application')?.name = 'notification-application'
include 'notification-service:notification-container'
findProject(':notification-service:notification-container')?.name = 'notification-container'
include 'notification-service:notification-dataaccess'
findProject(':notification-service:notification-dataaccess')?.name = 'notification-dataaccess'
include 'notification-service:notification-domain'
findProject(':notification-service:notification-domain')?.name = 'notification-domain'
include 'notification-service:notification-domain:notification-application-service'
findProject(':notification-service:notification-domain:notification-application-service')?.name = 'notification-application-service'
include 'notification-service:notification-domain:notification-domain-core'
findProject(':notification-service:notification-domain:notification-domain-core')?.name = 'notification-domain-core'
include 'notification-service:notification-messaging'
findProject(':notification-service:notification-messaging')?.name = 'notification-messaging'
include 'notification-service:notification-messaging:notification-openfeign-messaging'
findProject(':notification-service:notification-messaging:notification-openfeign-messaging')?.name = 'notification-openfeign-messaging'
include 'notification-service:notification-messaging:notification-firebase-messaging'
findProject(':notification-service:notification-messaging:notification-firebase-messaging')?.name = 'notification-firebase-messaging'
include 'notification-service:notification-dataaccess:notification-mysql-dataaccess'
findProject(':notification-service:notification-dataaccess:notification-mysql-dataaccess')?.name = 'notification-mysql-dataaccess'