-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
39 lines (36 loc) · 981 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
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
}
rootProject.name = "voxels-core"
includeBuild("gradle-plugin")
include(
":commands",
":commands:paper",
":commands:velocity",
":architecture",
":utility",
":networking",
":compose-ui",
":compose-ui:hud",
":compose-ui:maps",
":compose-ui:inventory",
":networking:paper",
":networking:velocity",
":resource-pack",
":behaviour-pack",
":example",
":proxy-core:architecture",
":proxy-core:utility",
":proxy-core:example"
)
fun recursiveApplySubprojectNames(project: ProjectDescriptor) {
project.children.forEach { subproject ->
if (subproject.name != "proxy-core") {
subproject.name = project.name + "-" + subproject.name
} else {
subproject.name = "voxels-proxy-core"
}
recursiveApplySubprojectNames(subproject)
}
}
recursiveApplySubprojectNames(rootProject)