2020-08-28 23:07:24 +02:00
|
|
|
import static groovy.io.FileType.*
|
|
|
|
|
|
|
|
|
|
rootProject.name = "Hal"
|
|
|
|
|
|
2020-11-10 18:36:02 +01:00
|
|
|
include "hal-core"
|
|
|
|
|
|
2020-08-28 23:07:24 +02:00
|
|
|
new File(rootDir, "plugins").traverse(type: DIRECTORIES) {dir->
|
|
|
|
|
if (new File(dir, '/build.gradle').exists()) {
|
|
|
|
|
include "plugins:${dir.getName()}"
|
|
|
|
|
}
|
|
|
|
|
}
|