-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
73 lines (66 loc) · 1.34 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
gradle.startParameter.excludedTaskNames.addAll(listOf(":build-logic:convention:testClasses"))
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LoveMarker"
include(":app")
include(
":core:common",
":core:datastore",
":core:designsystem",
":core:network",
":core:navigation",
":core:model"
)
include(
":data:auth",
":data:oauth",
":data:nickname",
":data:matching",
":data:map",
":data:archive",
":data:mypage",
":data:myfeed",
":data:detail",
":data:upload",
":data:search",
)
include(
":domain:auth",
":domain:oauth",
":domain:nickname",
":domain:matching",
":domain:map",
":domain:archive",
":domain:mypage",
":domain:myfeed",
":domain:detail",
":domain:upload",
":domain:search",
)
include(
":feature:main",
":feature:login",
":feature:nickname",
":feature:matching",
":feature:map",
":feature:archive",
":feature:mypage",
":feature:myfeed",
":feature:detail",
":feature:upload",
":feature:search",
)