routing/settings.gradle.kts

11 lines
329 B
Plaintext
Raw Permalink Normal View History

2024-08-30 14:39:25 +02:00
val projectname: String = providers.gradleProperty("projectname").get()
rootProject.name = projectname
2024-08-30 16:20:54 +02:00
include("deploy")
2024-08-30 14:39:25 +02:00
include("support")
include("server")
for (subproject in rootProject.children) {
subproject.projectDir = file("module-" + subproject.name)
subproject.buildFileName = "${subproject.name}.gradle.kts"
}