forked from WeBankBlockchain/WeDPR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
134 lines (90 loc) · 5.22 KB
/
settings.gradle
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
pluginManagement {
println "aliyun pluginManagement"
repositories {
maven { url "https://maven.aliyun.com/repository/gradle-plugin" }
maven { url "https://maven.aliyun.com/repository/spring-plugin" }
gradlePluginPortal()
}
}
rootProject.name = "WeDPR";
// submodules
include ':wedpr-common-utils'
project(':wedpr-common-utils').projectDir = file('wedpr-common/utils')
include ':wedpr-common-protocol'
project(':wedpr-common-protocol').projectDir = file('wedpr-common/protocol')
include ":wedpr-components-http-client"
project(":wedpr-components-http-client").projectDir = file("wedpr-components/http-client")
include ":wedpr-components-storage"
project(":wedpr-components-storage").projectDir = file("wedpr-components/storage")
include ':wedpr-components-mybatis'
project(':wedpr-components-mybatis').projectDir = file('wedpr-components/mybatis')
include ':wedpr-components-uuid'
project(':wedpr-components-uuid').projectDir = file('wedpr-components/uuid')
include(':wedpr-components-sys-config')
project(':wedpr-components-sys-config').projectDir = file('wedpr-components/meta/sys-config')
include(':wedpr-components-loadbalancer')
project(':wedpr-components-loadbalancer').projectDir = file('wedpr-components/meta/loadbalancer')
include(":wedpr-components-blockchain")
project(":wedpr-components-blockchain").projectDir = file("wedpr-components/blockchain")
include(":wedpr-components-leader-election")
project(":wedpr-components-leader-election").projectDir = file("wedpr-components/leader-election")
include ":wedpr-components-sync"
project(":wedpr-components-sync").projectDir=file("wedpr-components/sync")
include ":wedpr-components-quartz"
project(":wedpr-components-quartz").projectDir=file("wedpr-components/quartz")
include ":wedpr-components-resource-follower"
project(":wedpr-components-resource-follower").projectDir=file("wedpr-components/meta/resource-follower")
include ":wedpr-components-setting-template"
project(":wedpr-components-setting-template").projectDir=file("wedpr-components/meta/setting-template")
include ":wedpr-components-project"
project(":wedpr-components-project").projectDir=file("wedpr-components/meta/project")
include ":wedpr-components-agency"
project(":wedpr-components-agency").projectDir=file("wedpr-components/meta/agency")
include ":wedpr-components-authorization"
project(":wedpr-components-authorization").projectDir=file("wedpr-components/authorization")
include "wedpr-components-dataset"
project(":wedpr-components-dataset").projectDir=file("wedpr-components/dataset")
include ":wedpr-components-token-auth"
project(":wedpr-components-token-auth").projectDir=file("wedpr-components/token-auth")
include ":wedpr-components-scheduler"
project(":wedpr-components-scheduler").projectDir=file("wedpr-components/scheduler")
include "wedpr-components-security"
project(":wedpr-components-security").projectDir=file("wedpr-components/security")
include ":wedpr-components-task-plugin-api"
project(":wedpr-components-task-plugin-api").projectDir=file("wedpr-components/task-plugin/api")
include ":wedpr-components-task-plugin-shell"
project(":wedpr-components-task-plugin-shell").projectDir=file("wedpr-components/task-plugin/shell")
include ":wedpr-components-task-plugin-pir"
project(":wedpr-components-task-plugin-pir").projectDir=file("wedpr-components/task-plugin/pir")
include ":wedpr-components-spi"
project(":wedpr-components-spi").projectDir=file("wedpr-components/spi")
include "wedpr-components-transport"
project(":wedpr-components-transport").projectDir=file("wedpr-components/transport")
include "wedpr-components-crypto"
project(":wedpr-components-crypto").projectDir=file("wedpr-components/crypto")
include "wedpr-components-api-credential"
project(":wedpr-components-api-credential").projectDir=file("wedpr-components/api-credential")
include "wedpr-components-db-mapper-dataset"
project(":wedpr-components-db-mapper-dataset").projectDir=file("wedpr-components/db-mapper/dataset")
include "wedpr-components-db-mapper-service-publish"
project(":wedpr-components-db-mapper-service-publish").projectDir=file("wedpr-components/db-mapper/service-publish")
include ":wedpr-components-jupyter-intergration"
project(":wedpr-components-jupyter-intergration").projectDir=file("wedpr-components/env-integration/jupyter")
include "wedpr-components-hook"
project(":wedpr-components-hook").projectDir=file("wedpr-components/hook")
include "wedpr-components-user"
project(":wedpr-components-user").projectDir=file("wedpr-components/user")
include ":wedpr-components-initializer"
project(":wedpr-components-initializer").projectDir=file("wedpr-components/initializer")
include "wedpr-worker"
project(":wedpr-worker").projectDir=file("wedpr-worker")
include "wedpr-pir"
project(":wedpr-pir").projectDir=file("wedpr-pir")
include "wedpr-site"
project(":wedpr-site").projectDir=file("wedpr-site")
include ":wedpr-components-service-publish"
project(":wedpr-components-service-publish").projectDir=file("wedpr-components/service-publish")
include ":wedpr-components-service-sdk-pir"
project(":wedpr-components-service-sdk-pir").projectDir=file("wedpr-components/service-sdk/pir")
include ':wedpr-components-key-generator'
project(':wedpr-components-key-generator').projectDir=file("wedpr-components/key-generator")