This repository was archived by the owner on Jul 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
124 lines (86 loc) · 3.02 KB
/
settings.gradle.kts
File metadata and controls
124 lines (86 loc) · 3.02 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
gradlePluginPortal()
maven { url = uri("https://jitpack.io") }
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url = uri("https://jitpack.io") }
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") }
}
}
rootProject.name = "Odoo App"
// Common layer
include(":common:utils")
include(":common:network:authorization:api")
include(":common:network:authorization:impl")
include(":common:network:recruitment:api")
include(":common:network:recruitment:impl")
include(":common:network:crm:api")
include(":common:network:crm:impl")
include(":common:network:selectingModules:api")
include(":common:network:selectingModules:impl")
include(":common:network:employees:api")
include(":common:network:employees:impl")
include(":common:uiKitComponents")
// Core layer
include(":core:dataStore:api")
include(":core:dataStore:impl")
include(":core:di:api")
include(":core:di:impl")
include(":core:networkApi:authorization:api")
include(":core:networkApi:authorization:impl")
include(":core:networkApi:firebaseDatabase:api")
include(":core:networkApi:firebaseDatabase:impl")
include(":core:networkApi:recruitment:api")
include(":core:networkApi:recruitment:impl")
include(":core:networkApi:crm:api")
include(":core:networkApi:crm:impl")
include(":core:networkApi:userInfo:api")
include(":core:networkApi:userInfo:impl")
include(":core:networkApi:userModules:api")
include(":core:networkApi:userModules:impl")
include(":core:networkApi:firebaseRemoteConfig:impl")
include(":core:networkApi:firebaseRemoteConfig:api")
include(":core:networkApi:firebaseDatabase:api")
include(":core:networkApi:firebaseDatabase:impl")
include(":core:networkApi:employees:api")
include(":core:networkApi:employees:impl")
include(":core:jsonrpc:base")
include(":core:jsonrpc:core")
include(":core:jsonrpc:engine")
include(":core:jsonRpcApiFabric:api")
include(":core:jsonRpcApiFabric:impl")
include(":core:converter:api")
include(":core:converter:impl")
include(":core:platform")
include(":core:uiKitTheme")
include(":core:utils")
// Entry layer
include(":entry:app")
// Feature layer
include(":feature:authorization:base:api")
include(":feature:authorization:base:impl")
include(":feature:navigation:api")
include(":feature:navigation:impl")
include(":feature:selectingModules:api")
include(":feature:selectingModules:impl")
include(":feature:moduleNotFound:api")
include(":feature:moduleNotFound:impl")
include(":feature:recruitment:api")
include(":feature:recruitment:impl")
include(":feature:crm:api")
include(":feature:crm:impl")
include(":feature:userProfile:api")
include(":feature:userProfile:impl")
include(":feature:employees:api")
include(":feature:employees:impl")