mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 15:10:23 +00:00
24 lines
405 B
Groovy
24 lines
405 B
Groovy
rootProject.name = 'xpipe'
|
|
|
|
include 'api'
|
|
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'
|