-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
68 lines (63 loc) · 1.74 KB
/
settings.gradle.kts
File metadata and controls
68 lines (63 loc) · 1.74 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
rootProject.name = "OnDot"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("build-logic")
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
google()
mavenCentral()
gradlePluginPortal()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven { url = uri("https://devrepo.kakao.com/nexus/content/groups/public/") }
mavenLocal()
flatDir {
dirs("libs")
}
}
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven { url = uri("https://devrepo.kakao.com/nexus/content/groups/public/") }
mavenLocal()
flatDir {
dirs("libs")
}
}
}
include(":composeApp")
include(":domain")
include(":core")
include(":data")
include(":core:network")
include(":core:platform")
include(":core:util")
include(":feature:splash")
include(":core:ui")
include(":core:design-system")
include(":core:navigation")
include(":feature:alarm")
include(":feature:edit")
include(":feature:general")
include(":feature:main")
include(":feature:login")
include(":feature:onboarding")
include(":core:bridge")
include(":domain:testing")
include(":core:result")
include(":feature:everytime")