mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 09:32:04 +00:00
19 lines
469 B
Groovy
19 lines
469 B
Groovy
def modules = [
|
|
"wherehows-backend",
|
|
"wherehows-common",
|
|
"wherehows-dao",
|
|
"wherehows-data-model",
|
|
"wherehows-etl",
|
|
"wherehows-frontend",
|
|
"wherehows-hadoop",
|
|
"wherehows-kafka",
|
|
"wherehows-web",
|
|
]
|
|
|
|
modules.each { module ->
|
|
if (!file("${rootDir}/${module}").directory) {
|
|
throw new GradleException("Module '$module' specified in the settings.gradle file must be a valid directory in the root project.")
|
|
}
|
|
include "${module}"
|
|
}
|