-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.gradle.kts
51 lines (48 loc) · 1.22 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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
}
}
rootProject.name = "gptmap"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":core:designsystem")
include(":core:common")
include(":core:data")
include(":core:model")
include(":feature:map")
include(":core:domain")
include(":feature:street-view")
include(":feature:login")
include(":feature:register")
include(":core:google")
include(":feature:forgot-password")
include(":core:mongodb")
include(":feature:favourite")
include(":feature:screenshot")
include(":core:save-screenshot")
include(":feature:screenshot-gallery")
include(":feature:profile")
include(":feature:info")
include(":feature:delete-profile")
include(":feature:verify-auth")
include(":feature:snapTo-script")
include(":core:firebase")
include(":core:gemini")
include(":core:unsplash")
include(":core:testing")
include(":core:datastore")
include(":core:datastore-proto")
include(":benchmarks")
include(":feature:sub")