-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
88 lines (83 loc) · 3.28 KB
/
settings.gradle
File metadata and controls
88 lines (83 loc) · 3.28 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
rootProject.name = 'solver'
include(
'app',
'app:init',
'app:init:mathrank-auth-init',
'app:init:mathrank-problem-init',
'app:api',
'app:api:mathrank-point-api',
'app:api:mathrank-point-inner-api',
'app:api:mathrank-contents-api',
'app:api:mathrank-member-read-api',
'app:api:mathrank-board-api',
'app:api:mathrank-member-api',
'app:api:mathrank-rank-read-api',
'app:api:mathrank-problem-contest-api',
'app:api:mathrank-problem-contest-read-api',
'app:api:mathrank-problem-assessment-api',
'app:api:mathrank-problem-assessment-read-api',
'app:api:mathrank-problem-single-api',
'app:api:mathrank-problem-single-read-api',
'app:api:mathrank-healthcheck-api',
'app:api:monolith-api',
'app:api:mathrank-image-api',
'app:api:mathrank-problem-api',
'app:api:mathrank-problem-read-api',
'app:api:mathrank-problem-inner-api',
'app:api:mathrank-api-common',
'app:api:mathrank-auth-api',
'app:api:mathrank-school-read-api',
'app:api:mathrank-course-api',
'app:api:mathrank-course-inner-api',
'app:batch',
'app:consumer',
'app:consumer:mathrank-point-consumer-monolith',
'app:consumer:mathrank-contents-consumer-monolith',
'app:consumer:mathrank-problem-single-consumer-monolith',
'app:consumer:mathrank-rank-consumer-monolith',
'app:consumer:mathrank-assessment-consumer-monolith',
'app:consumer:mathrank-problem-single-consumer',
'app:consumer:mathrank-problem-single-read-consumer-monolith',
'client',
'client:mathrank-client-response',
'client:mathrank-client-config',
'client:internal',
'client:internal:mathrank-point-client',
'client:internal:mathrank-course-client',
'client:internal:mathrank-member-client',
'client:internal:mathrank-problem-client',
'client:external',
'client:external:mathrank-school',
'domain',
'domain:mathrank-contents-domain',
'domain:mathrank-board-domain',
'domain:mathrank-school-domain',
'domain:mathrank-course-domain',
'domain:mathrank-problem-assessment-domain',
'domain:mathrank-image-domain',
'domain:mathrank-auth-domain',
'domain:mathrank-problem-core-domain',
'domain:mathrank-problem-domain',
'domain:mathrank-problem-read-domain',
'domain:mathrank-problem-single-domain',
'domain:mathrank-rank-domain',
'domain:mathrank-problem-single-read-domain',
'domain:mathrank-point-domain',
'common',
'common:mathrank-lazy-connection',
'common:mathrank-cache',
'common:mathrank-cache-redis',
'common:mathrank-cache-caffeine',
'common:mathrank-querydsl',
'common:mathrank-page',
'common:mathrank-exception',
'common:mathrank-jwt',
'common:mathrank-role',
'common:mathrank-dataserializer',
'common:mathrank-snowflake',
'common:mathrank-outbox',
'common:mathrank-event-publisher',
'common:mathrank-event-publisher-test',
'common:mathrank-event-publisher-monolith',
'common:mathrank-event'
)