xpipe/settings.gradle

16 lines
248 B
Groovy
Raw Normal View History

2023-01-27 15:34:46 +13:00
rootProject.name = 'xpipe'
2021-12-02 07:17:54 +13:00
2022-03-11 06:48:06 +13:00
include 'api'
2021-12-02 07:17:54 +13:00
include 'core'
include 'beacon'
2021-12-03 02:28:55 +13:00
include 'extension'
2022-08-13 03:26:01 +12:00
2023-01-27 15:34:46 +13:00
for (def ext : file("ext").list()) {
include "$ext"
project(":$ext").projectDir = file("ext/$ext")
2022-08-13 03:26:01 +12:00
}
2023-01-27 15:34:46 +13:00
include 'app'
include 'cli'
include 'dist'