2017-06-30 15:05:17 -07:00
|
|
|
def modules = [
|
|
|
|
"wherehows-backend",
|
|
|
|
"wherehows-common",
|
|
|
|
"wherehows-dao",
|
|
|
|
"wherehows-data-model",
|
|
|
|
"wherehows-etl",
|
2017-06-30 17:19:19 -07:00
|
|
|
"wherehows-frontend",
|
2017-06-30 15:05:17 -07:00
|
|
|
"wherehows-hadoop",
|
2017-08-22 11:25:37 -07:00
|
|
|
"wherehows-kafka",
|
2017-08-22 14:56:47 -07:00
|
|
|
"wherehows-web",
|
2017-06-30 15:05:17 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
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}"
|
|
|
|
}
|