Files
xpipe/settings.gradle
crschnick 7194fc6623 Rework
2026-05-25 17:09:12 +00:00

23 lines
392 B
Groovy

rootProject.name = 'xpipe'
include "base"
project(":base").projectDir = file("ext/base")
for (def ext : file("ext").list()) {
if (ext == 'base') {
continue
}
if (file("ext/$ext/build.gradle").exists()) {
include "$ext"
project(":$ext").projectDir = file("ext/$ext")
}
}
include 'app'
if (file("cli").exists()) {
include 'cli'
}
include 'dist'