-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
52 lines (49 loc) · 1.23 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
52 lines (49 loc) · 1.23 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
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만 추가
/**
* 아래와 같이 선언하면 서브 모듈이 되는 것이므로
* 다른 모듈에서 build.gradle에 build-logic을 매번 추가해줘야함
* include(":build-logic") // remove
* include(":build-logic:convention") // remove
*/
// App 모듈에도 모든 모듈에 대해 참조 설정 해주어야함
include(
":feature:home",
":feature:search",
":feature:community",
":feature:relaylist",
":feature:playlist",
":feature:mypage",
":feature:devmode",
":feature:photocard",
":feature:song",
":shared:feature",
":core",
":core:common",
":core:navigator",
":core:kotlin",
":core:resources",
":designsystem",
":domain",
":data",
":app",
":devmode-fcm",
":devmode-network",
)