-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
75 lines (66 loc) · 1.39 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// naver
maven {
url = uri("https://repository.map.naver.com/archive/maven")
}
//kakao
maven { url = java.net.URI("https://devrepo.kakao.com/nexus/content/groups/public/") }
}
}
rootProject.name = "hankkijogbo"
include(":app")
// core
include(
":core:common",
":core:datastore",
":core:designsystem",
":core:network",
":core:navigation"
)
// data
include(
":data:token",
":data:login",
":data:reissuetoken",
":data:home",
":data:report",
":data:storedetail",
":data:my",
":data:universityselection"
)
// domain
include(
":domain:my",
":domain:universityselection",
":domain:report",
":domain:token",
":domain:login",
":domain:reissuetoken",
":domain:home",
":domain:storedetail"
)
// feature
include(
":feature:main",
":feature:home",
":feature:report",
":feature:my",
":feature:login",
":feature:universityselection",
":feature:storedetail"
)
// baselineprofile
include(":baselineprofile")