-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
39 lines (35 loc) · 1.01 KB
/
settings.gradle.kts
File metadata and controls
39 lines (35 loc) · 1.01 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
rootProject.name = "compose-multiplatform-html-unified"
include("common") // TODO consider splitting into several modules including `foundation`, `ui`, etc. (#45)
include("material-icons:core")
include("material-icons:extended")
include("material2") // components broken with KMDC's old Kotlin and Compose dependencies, kept for reference purposes, not published
include("material3")
include("navigation")
include("lifecycle-viewmodel")
include("demo")
fun ProjectDescriptor.setProjectConcatenatedNames(prefix: String) {
name = prefix + name
for (child in children)
child.setProjectConcatenatedNames("$name-")
}
rootProject.setProjectConcatenatedNames("")
/*
// This seems not needed.
pluginManagement {
repositories {
//mavenLocal()
gradlePluginPortal()
google()
mavenCentral()
}
}
*/
// This is needed for Kotlin Native.
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
mavenLocal()
mavenCentral()
google()
}
}