11 lines
No EOL
257 B
Groovy
11 lines
No EOL
257 B
Groovy
import static groovy.io.FileType.DIRECTORIES
|
|
|
|
rootProject.name = "Hal"
|
|
|
|
include "hal-core"
|
|
|
|
new File(rootDir, "plugins").traverse(type: DIRECTORIES) {dir->
|
|
if (new File(dir, '/build.gradle').exists()) {
|
|
include "plugins:${dir.getName()}"
|
|
}
|
|
} |