-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
53 lines (52 loc) · 1.2 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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
maven { setUrl("https://repo.sendbird.com/public/maven") }
}
}
rootProject.name = "KURing"
include(
":app",
":core:util",
":core:ui_util",
":data:domain",
":data:domain:testUtils",
":data:notice",
":data:notice:test",
":core:preferences",
":data:ai",
":data:user",
":data:staff",
":data:department",
":data:department:test",
":data:local",
":data:local:test",
":data:remote",
":data:space",
":data:search",
":core:thirdparty",
":core:work",
":core:testUtil",
":feature:edit_subscription",
":feature:feedback",
":feature:notice_detail",
":feature:notion",
":feature:onboarding",
":feature:splash",
":feature:main",
":core:designsystem",
":feature:kuringbot",
":feature:edit_departments"
)