-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
44 lines (35 loc) · 997 Bytes
/
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
// https://docs.gradle.org/7.4/userguide/declaring_dependencies.html#sec:type-safe-project-accessors
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
include(":app:handheld")
include(":app:wearable")
include(":communication")
include(":communication:failures")
include(":communication:impl:data-layer")
include(":communication:impl:data-layer:service")
include(":communication:models")
include(":data:common")
include(":data:handheld")
include(":data:wearable")
include(":di:common")
include(":di:handheld")
include(":di:wearable")
include(":domain:common")
include(":domain:common:models")
include(":domain:handheld")
include(":domain:wearable")
include(":presentation:shared")
include(":utils:resource")