-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
44 lines (42 loc) · 1.22 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
44 lines (42 loc) · 1.22 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven(url = "https://jitpack.io")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
versionCatalogs {
create("libs") { from(files("gradle/dependencies/app_dependencies.toml")) }
}
}
rootProject.name = "notes"
include(":app")
include(":common:domain")
include(":common:presentation")
include(":feature:home:domain")
include(":feature:home:presentation")
include(":feature:detail:presentation")
include(":feature:favourite:domain")
include(":feature:favourite:presentation")
include(":feature:home:data")
include(":feature:favourite:data")
include(":feature:detail:domain")
include(":navigation")
include(":common:data:remote")
include(":common:data:local")
include(":feature:single_note")
include(":feature:single_note:data")
include(":feature:single_note:domain")
include(":feature:single_note:presentation")
include(":feature:settings")
include(":feature:settings:data")
include(":feature:settings:domain")
include(":feature:settings:presentation")