-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
40 lines (35 loc) · 938 Bytes
/
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
pluginManagement {
includeBuild("gradle/build-logic")
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
google()
mavenLocal()
// Prerelease versions of Compose Multiplatform
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
// https://docs.gradle.org/7.6/userguide/configuration_cache.html#config_cache:stable
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
rootProject.name = "crime-mapper"
include(":app")
include(":crossplatform")
include(
":core:base",
":core:designsystem",
":core:database",
)
include(":data")
include(":domain")
include(":ui")
include(":ui:dashboard")
include(":data:movies")
include(":data:models")