1 Star 0 Fork 0

xiewendomg/databus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
settings.gradle 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
Chavdar Botev 提交于 2014-02-14 18:12 . Merging up to OS_MP_140210-1532
// If a new directory is added, that contains a test inside, please add the directory here
def base_modules = [
'databus-bootstrap-client',
'databus-bootstrap-common',
'databus-bootstrap-producer',
'databus-bootstrap-server',
'databus-bootstrap-utils',
'databus-client',
'databus-core',
'databus-cluster',
'databus-group-leader',
'databus-relay',
'databus-tools',
'databus-util-cmdline',
'databus2-example',
'databus2-relay',
'db',
'script',
'metrics-histograms'
]
// add above to get hadoop artifacts uploaded 'hadoop',
//TODO modules removed due to problems with their build dependencies:
//
// these are being worked on
def nonReleaseModules = [
]
//consuming of root.dir property allows us to 'wrap' the open source project with a master gradle project if necessary
String rootDir = hasProperty("root.dir") ? getProperty("root.dir") : settingsDir
base_modules.each { module ->
file("$rootDir/$module").eachDir { submodule ->
if (!submodule.name.startsWith('.') && !nonReleaseModules.contains(submodule.name)) {
def path = ":${module}:${submodule.name}"
include path
project(path).projectDir = file("$rootDir/$module/$submodule.name")
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiewendomg/databus.git
git@gitee.com:xiewendomg/databus.git
xiewendomg
databus
databus
master

搜索帮助