-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
53 lines (52 loc) · 1.86 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "EconoMe"
include(":app")
include(":sources:engine:di-core")
include(":sources:engine:navigation")
include(":sources:resources:ui-kit")
include(":sources:resources:uikit-sandbox")
include(":sources:features:main-navigation-api")
include(":sources:features:main-navigation-impl")
include(":sources:features:main-api")
include(":sources:features:main-impl")
include(":sources:features:spending-api")
include(":sources:features:spending-impl")
include(":sources:features:bank-accounts-api")
include(":sources:features:bank-accounts-impl")
include(":sources:features:user-api")
include(":sources:features:user-impl")
include(":sources:features:wallet-api")
include(":sources:features:wallet-impl")
include(":sources:features:settings-api")
include(":sources:features:settings-impl")
include(":sources:features:common-categories-api")
include(":sources:features:common-categories-impl")
include(":sources:features:finance-analysis-api")
include(":sources:features:finance-analysis-impl")
include(":sources:features:product-cost-analysis-api")
include(":sources:features:product-cost-analysis-impl")
include(":sources:features:product-categories-api")
include(":sources:features:product-categories-impl")
include(":sources:features:all-spending-api")
include(":sources:features:all-spending-impl")
include(":sources:core:common")
include(":sources:engine:main-activity")
include(":sources:core:core-database-api")
include(":sources:core:core-database-impl")
include(":sources:core:common-provider")
include(":sources:domain:currency")
include(":sources:core:current-user")
include(":sources:domain:category")