mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
16 lines
292 B
Groovy
16 lines
292 B
Groovy
rootProject.name = 'xpipe'
|
|
|
|
include 'api'
|
|
include 'core'
|
|
include 'beacon'
|
|
|
|
for (def ext : file("ext").list()) {
|
|
if (file("ext/$ext/build.gradle").exists()) {
|
|
include "$ext"
|
|
project(":$ext").projectDir = file("ext/$ext")
|
|
}
|
|
}
|
|
|
|
include 'app'
|
|
include 'cli'
|
|
include 'dist'
|