-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsettings.gradle.kts
36 lines (32 loc) · 1003 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
google()
mavenCentral()
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
gradlePluginPortal()
maven(url = "https://androidx.dev/storage/compose-compiler/repository/")
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}
rootProject.name = "kmp-viewmodel"
include(":viewmodel")
include(":viewmodel-compose")
include(":viewmodel-koin")
include(":viewmodel-koin-compose")
include(":viewmodel-koject")
include(":viewmodel-koject-compose")
include(":viewmodel-savedstate")
include(":sample:app", ":sample:shared")
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
}