-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
69 lines (67 loc) · 1.74 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
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()
maven(url = "https://jitpack.io")
maven(url = "https://devrepo.kakao.com/nexus/content/groups/public/")
}
}
rootProject.name = "Recordy"
include(":app")
include(":core:common")
include(":core:buildconfig")
include(":core:ui")
include(":core:designsystem")
include(":core:network")
include(":core:datastore")
include(":core:model")
include(":data:auth")
include(":data:oauth")
include(":local:auth")
include(":remote:auth")
include(":domain:auth")
include(":domain:oauth")
include(":feature:navigator")
include(":feature:home")
include(":feature:video")
include(":feature:login")
include(":feature:upload")
include(":feature:profile")
include(":feature:mypage")
include(":feature:setting")
include(":domain:user")
include(":domain:video")
include(":domain:upload")
include(":data:user")
include(":data:video")
include(":remote:video")
include(":remote:user")
include(":remote:keyword")
include(":domain:keyword")
include(":data:keyword")
include(":local:user")
include(":core:cache")
include(":core:workmanager")
include(":core:security")
include(":local:video")
include(":feature:search")
include(":feature:detail")
include(":domain:exhibition")
include(":remote:exhibition")
include(":data:exhibition")