-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
54 lines (52 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
44
45
46
47
48
49
50
51
52
53
54
pluginManagement {
includeBuild("build-logic")
repositories {
google {
mavenContent {
includeGroupByRegex(".*google.*")
includeGroupByRegex(".*android.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupByRegex(".*google.*")
includeGroupByRegex(".*android.*")
}
}
mavenCentral()
}
}
rootProject.name = "all"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
":app-arducon",
":app-cnubus",
":app-my-grade",
":app-nanda",
":app-comssa",
":benchmarks",
// ":catalog",
":core:common",
":core:common-android",
":core:compose-core",
":core:data",
":core:data-api",
":core:database",
":core:datastore-proto",
":core:domain",
":core:model",
":core:network",
":core:resource",
":core:testing",
":core:navigation",
":feature:ui-labs",
":feature:ui-setting",
":shared",
":widget",
)