-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
32 lines (26 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
import java.io.File
pluginManagement {
includeBuild("../build-logic")
}
plugins {
id("multimodule")
}
fun includeSubs(base: String, path: String = base, vararg subs: String) {
subs.forEach {
include(":$base-$it")
project(":$base-$it").projectDir = File("$path/$it")
}
}
listOf(
"cinematic", "keep", "lexi", "captain", "neat", "kase",
"kash-api", "kash-client", "geo-api", "geo-client",
"kronecker", "symphony", "epsilon-api", "krono-core", "krono-client",
"hormone", "identifier-api", "identifier-client",
"kommerce", "kollections", "koncurrent", "kommander", "cabinet-api",
"bringer", "klip", "snitch", "krest", "sanity", "epsilon-client",
"flame-core", "flame-client", "sentinel-core", "sentinel-client", "status"
).forEach { includeBuild("../$it") }
rootProject.name = "flame-client"
includeSubs("flame-scenes-core", "scenes/core", "customers", "entity", "suppliers", "smes")
includeSubs("flame-scenes-tests", "scenes/tests", "smes")
includeSubs("flame-api", "api", "customers", "entity", "suppliers", "smes")