-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.gradle.kts
54 lines (53 loc) · 1.31 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://devrepo.kakao.com/nexus/content/groups/public/")
}
}
rootProject.name = "Link-Mind"
include(":app")
include(":core:network")
include(":core:common")
include(":core:model")
include(":core:ui")
include(":core:auth")
include(":core:authimpl")
include(":core:datastore")
include(":core:designsystem")
include(":domain:oauthdomain")
include(":domain:timer")
include(":domain:user")
include(":domain:category")
include(":domain:link")
include(":domain:home")
include(":data:oauthdata")
include(":data:timer")
include(":data:user")
include(":data:category")
include(":data:home")
include(":data:link")
include(":data-remote:timer")
include(":data-remote:user")
include(":data-remote:category")
include(":data-remote:link")
include(":data-remote:home")
include(":feature:home")
include(":feature:maincontainer")
include(":feature:login")
include(":feature:clip")
include(":feature:mypage")
include(":feature:timer")
include(":feature:savelink")
include(":feature:share")
include(":feature:search")