-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle.kts
56 lines (50 loc) · 1.56 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
55
56
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "ArchSample"
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
includeGroupByRegex("android.*")
}
}
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
includeGroupByRegex("android.*")
}
}
mavenCentral()
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
maven("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
}
}
include(":composeApp")
include(":data:database")
include(":data:preferences")
include(":common:common-ui")
include(":common:common-component")
include(":common:common-domain")
include(":common:common-data")
include(":feature:root:root-domain")
include(":feature:root:root-ui")
include(":feature:root:root-component")
include(":feature:auth:auth-domain")
include(":feature:auth:auth-ui")
include(":feature:auth:auth-component")
include(":feature:auth:auth-data")
include(":feature:todo:todo-ui")
include(":feature:todo:todo-domain")
include(":feature:todo:todo-component")
include(":feature:todo:todo-data")