-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
43 lines (40 loc) · 1.12 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
// build-logic은 전역적으로 관리
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "WePLi"
// app 모듈에는 다른 모듈 include만 추가
include(":app")
/**
* 아래와 같이 선언하면 서브 모듈이 되는 것이므로
* 다른 모듈에서 build.gradle에 build-logic을 매번 추가해줘야함
* include(":build-logic") // remove
* include(":build-logic:convention") // remove
*/
// App 모듈에도 모든 모듈에 대해 참조 설정 해주어야함
include(":feature:home")
include(":feature:search")
include(":feature:community")
include(":feature:playlist")
include(":feature:mypage")
include(":shared:feature")
include(":core")
include(":core:common")
include(":core:navigator")
include(":core:kotlin")
include(":designsystem")
include(":domain")
include(":data")