xpipe-mirror/settings.gradle

15 lines
228 B
Groovy
Raw Normal View History

2023-01-27 02:34:46 +00:00
rootProject.name = 'xpipe'
2021-12-01 18:17:54 +00:00
2022-03-10 17:48:06 +00:00
include 'api'
2021-12-01 18:17:54 +00:00
include 'core'
include 'beacon'
2022-08-12 15:26:01 +00:00
2023-01-27 02:34:46 +00:00
for (def ext : file("ext").list()) {
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'
include 'cli'
include 'dist'