1 Star 0 Fork 0

zv/moqui-framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
settings.gradle 631 Bytes
一键复制 编辑 原始数据 按行查看 历史
String[] getDirectoryProjects(String relativePath) {
File runtimeDir = file('runtime')
if (!runtimeDir.exists()) return new String[0]
File compsDir = file('runtime/' + relativePath)
if (!compsDir.exists()) return new String[0]
return compsDir.listFiles().findAll { it.isDirectory() && it.listFiles().find { it.name == 'build.gradle' } }
.collect { "runtime:${relativePath}:${it.getName()}" } as String[]
}
include 'framework'
include getDirectoryProjects('base-component')
include getDirectoryProjects('mantle')
include getDirectoryProjects('component')
include getDirectoryProjects('ecomponent')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zevichen/moqui-framework.git
git@gitee.com:zevichen/moqui-framework.git
zevichen
moqui-framework
moqui-framework
master

搜索帮助