generated from JetBrains/compose-multiplatform-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
settings.gradle.kts
49 lines (42 loc) · 1.45 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
val copyToBuildLogic = { sourcePath: String ->
rootDir.resolve(sourcePath).copyRecursively(
target = rootDir.resolve("build-logic").resolve(sourcePath),
overwrite = true,
)
println("[DONE] copied $sourcePath")
}
arrayOf("gradle.properties", "gradle/wrapper").forEach(copyToBuildLogic)
rootProject.name = "KmpViewModel-Compose-Multiplatform"
include(":androidApp")
include(":desktopApp")
include(":features:feature_search_photo_shared")
include(":features:feature_photo_detail_shared")
include(":core:common_shared")
include(":core:common_ui_shared")
include(":core:navigation_shared")
include(":libraries:koin-utils")
include(":libraries:koin-compose-utils")
include(":libraries:coroutines-utils")
include(":libraries:compose-stable-wrappers")
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
}