-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle.kts
80 lines (72 loc) Β· 1.53 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
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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("build-logic")
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// KakaoSDK repository
maven(url = "https://devrepo.kakao.com/nexus/content/groups/public/")
}
}
rootProject.name = "Terning-Android"
include(":app")
// core
include(
":core:analytics",
":core:designsystem",
":core:navigation",
":core:network",
":core:local"
)
// data
include(
":data:auth",
":data:calendar",
":data:filtering",
":data:home",
":data:intern",
":data:mypage",
":data:search",
":data:tokenreissue",
":data:token",
":data:scrap"
)
// domain
include(
":domain:auth",
":domain:calendar",
":domain:filtering",
":domain:home",
":domain:intern",
":domain:mypage",
":domain:search",
":domain:tokenreissue",
":domain:token",
":domain:scrap"
)
// feature
include(
":feature:calendar",
":feature:dialog",
":feature:filtering",
":feature:home",
":feature:intern",
":feature:main",
":feature:mypage",
":feature:onboarding",
":feature:search"
)