xpipe-mirror/settings.gradle

26 lines
425 B
Groovy
Raw Permalink Normal View History

2023-01-27 02:34:46 +00:00
rootProject.name = 'xpipe'
2021-12-01 18:17:54 +00:00
include 'core'
include 'beacon'
2022-08-12 15:26:01 +00:00
2023-09-27 00:47:51 +00:00
include "base"
project(":base").projectDir = file("ext/base")
2023-01-27 02:34:46 +00:00
for (def ext : file("ext").list()) {
2023-09-27 00:47:51 +00:00
if (ext == 'base') {
continue
}
2023-08-26 07:19:41 +00:00
if (file("ext/$ext/build.gradle").exists()) {
2023-09-27 00:47:51 +00:00
2023-08-26 07:19:41 +00:00
include "$ext"
project(":$ext").projectDir = file("ext/$ext")
}
2022-08-12 15:26:01 +00:00
}
2023-01-27 02:34:46 +00:00
include 'app'
2024-04-24 17:31:48 +00:00
if (file("cli").exists()) {
include 'cli'
}
2023-01-27 02:34:46 +00:00
include 'dist'