-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
68 lines (54 loc) · 1.64 KB
/
settings.gradle
File metadata and controls
68 lines (54 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// 指定plugin下载仓库
pluginManagement {
repositories {
mavenLocal()
maven { url 'https://maven.aliyun.com/repository/central/' }
gradlePluginPortal()
}
}
// 项目信息
rootProject.name = 'anyi-cloud'
// 依赖bom
include 'anyi-cloud-bom'
// 基础核心模块
def excludes = [
]
if (file("${rootDir}/anyi-cloud-corebase-modules").directory) {
file("${rootDir}/anyi-cloud-corebase-modules").eachDir {
if (!excludes.contains(it.name)) {
include "anyi-cloud-corebase-modules:${it.name}"
}
}
}
// 授权核心模块
if (file("${rootDir}/anyi-cloud-coreauth-modules").directory) {
file("${rootDir}/anyi-cloud-coreauth-modules").eachDir {
if (!excludes.contains(it.name)) {
include "anyi-cloud-coreauth-modules:${it.name}"
}
}
}
// 服务模块
if (file("${rootDir}/anyi-cloud-service-modules").directory) {
file("${rootDir}/anyi-cloud-service-modules").eachDir {
if (!excludes.contains(it.name)) {
include "anyi-cloud-service-modules:${it.name}"
}
}
}
// 模块间调用适配层接口
if (file("${rootDir}/anyi-cloud-adapter-modules").directory) {
file("${rootDir}/anyi-cloud-adapter-modules").eachDir {
if (!excludes.contains(it.name)) {
include "anyi-cloud-adapter-modules:${it.name}"
}
}
}
// 模块间调用远程方式适配层
if (file("${rootDir}/anyi-cloud-adapterrpc-modules").directory) {
file("${rootDir}/anyi-cloud-adapterrpc-modules").eachDir {
if (!excludes.contains(it.name)) {
include "anyi-cloud-adapterrpc-modules:${it.name}"
}
}
}