-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
61 lines (41 loc) · 1.05 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
52
53
54
55
56
57
58
59
60
61
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
includeBuild("gradle/build-logic")
}
plugins { id("dev.suresh.plugin.repos") }
rootProject.name = "kotlin-mpp-playground"
include(":shared")
include(":dep-mgmt:bom")
include(":dep-mgmt:catalog")
include(":backend:jvm")
include(":backend:security")
include(":backend:data")
include(":backend:profiling")
include(":backend:agent:jfr")
include(":backend:agent:otel")
include(":web")
include(":benchmark")
include(":meta:ksp:processor")
include(":meta:compiler:plugin")
val nativeBuild: String? by settings
val composeBuild: String? by settings
val springBoot: String? by settings
if (nativeBuild.toBoolean()) {
include(":backend:native")
}
if (composeBuild.toBoolean()) {
include(":compose:cmp")
// include(":compose:cli")
// include(":compose:html")
}
if (springBoot.toBoolean()) {
include(":backend:boot")
}
// includeBuild("misc/build") {
// dependencySubstitution {
// substitute(module("dev.suresh:misc-build")).using(project(":"))
// }
// }