xpipe/settings.gradle
2024-03-07 22:26:23 +00:00

24 lines
391 B
Groovy

rootProject.name = 'xpipe'
include 'core'
include 'beacon'
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'
include 'cli'
include 'dist'