1 Star 0 Fork 2

weishengliang / databus

forked from witree / databus 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
defaultEnvironment.gradle 944 Bytes
一键复制 编辑 原始数据 按行查看 历史
repositories {
// for open source we cannot user internal repo
// so we add few open source ones
mavenCentral()
maven {
url "https://repo.fusesource.com/maven2"
}
maven {
url "https://maven.restlet.org"
}
// local repo for libs we have to ship with
def sandBoxRepo = "${project.rootDir}/sandbox-repo"
def sandBoxExists = new File(sandBoxRepo).isDirectory()
if (sandBoxExists) {
logger.debug "Adding repository $sandBoxRepo"
project.repositories.ivy {
name "sanboxRepo"
url sandBoxRepo
layout "pattern", {
artifact "[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"
ivy "[organisation]/[module]/[revision]/[module]-[revision].ivy"
m2compatible = true
}
}
} else {
logger.debug "Not adding repository $sandBoxRepo as the directory does not exist."
}
}
project.buildDir = new File(project.rootProject.buildDir, project.name)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/weishengliang/databus.git
git@gitee.com:weishengliang/databus.git
weishengliang
databus
databus
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891