-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathsettings.gradle
More file actions
44 lines (38 loc) · 1010 Bytes
/
Copy pathsettings.gradle
File metadata and controls
44 lines (38 loc) · 1010 Bytes
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
pluginManagement {
includeBuild 'build-logic'
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = 'https://jitpack.io' }
}
}
rootProject.name = 'ModularizationProject'
include ':app',
':feature-home',
':feature-accommodation',
':feature-transportation',
':feature-attraction',
':biz-service-base',
':feature-home-api',
':feature-accommodation-api',
':feature-transportation-api',
':feature-attraction-api',
':platform-navigation-arouter',
':core-navigation',
':core-ui',
':core-model',
':core-device',
':core-common',
':core-storage',
':core-network'