-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
58 lines (56 loc) · 1.43 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
57
58
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
rootProject.name = "Popos"
include(":app")
include(":benchmark")
include(":core")
include(":feature")
include(":core:database")
include(":core:common")
include(":core:ui")
include(":core:designsystem")
include(":core:testing")
include(":core:analytics")
include(":core:data")
include(":core:notifications")
include(":core:model")
include(":core:domain")
include(":core:worker")
include(":feature:account")
include(":feature:addonitem")
include(":feature:address")
include(":feature:app_settings")
include(":feature:cart")
include(":feature:cart_order")
include(":feature:category")
include(":feature:charges")
include(":feature:customer")
include(":feature:data_deletion")
include(":feature:employee")
include(":feature:employee_attendance")
include(":feature:employee_payment")
include(":feature:expenses")
include(":feature:expenses_category")
include(":feature:home")
include(":feature:order")
include(":feature:printer")
include(":feature:product")
include(":feature:profile")
include(":feature:reminder")
include(":feature:reports")
include(":feature:cart_selected")
include(":feature:print")