-
Notifications
You must be signed in to change notification settings - Fork 117
/
build.gradle
234 lines (202 loc) · 5.83 KB
/
build.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
println("Notice: current gradle version is " + gradle.gradleVersion)
ext {
// spring
springVersion = "5.1.15.RELEASE"
springMqttVersion = "5.1.11.RELEASE"
// data.spring-data-commons
springBootVersion = "2.1.14.RELEASE"
// spring cloud
springCloudVersion = "Greenwich.SR5"
// ----- org.apache -----
// zookeeper
zookeeperVersion = "3.5.5"
// httpclient
httpclientVersion = "4.5.6"
// tomcat
tomcatVersion = "8.5.23"
// commons
apacheCommonsVersion = [
lang3 : "3.6",
jexl3 : "3.1",
pool2 : "2.7.0",
collections4: "4.1",
dbcp2 : "2.6.0",
commonsIo : "2.4",
fileupload : "1.4"
]
// org slf4j
slf4jVersion = "1.7.30"
// logging.log4j
log4jVersion = "2.13.3"
// org.fisco-bcos.web3sdk
web3sdkVersion = [
fisco: "2.7.1"
]
// fabric
fabricVersion = "1.4.4"
// pb
protobufVersion = "3.6.1"
// lombok
lombokVersion = "1.18.12"
// junit
junitVersion = "4.12"
// netty-all
nettyVersion = "4.1.44.Final"
// jsonrpc
jsonrpc4jVersion = "1.5.3"
// JMS
jmsVersion = "1.1"
// Jmock
jmockVersion = "1.9.0"
// mybatis-spring-boot-starter
mybatisVersion = "1.3.2"
//h2
h2Version = "1.4.196"
// mariadb-java-client
mariadbClientVersion = "2.3.0"
// jsoup
jsoupVersion = "1.9.2"
// fastjson
fastjsonVersion = "1.2.70"
// quartz
quartzVersion = "2.3.0"
// Java-WebSocket
WebSocketVersion = "1.4.0"
// JWTVersion
JWTVersion = "3.8.0"
// MQTT paho client
PahoClientVersion = "1.2.2"
// jmeter
jmeterVersion = "5.0"
// jackson
jacksonVersion = "2.11.2"
commonsNetVersion = "3.6"
bouncycastleVersion = "1.60"
}
buildscript {
repositories {
mavenLocal()
maven {
url "http://maven.aliyun.com/nexus/content/groups/public/"
}
maven {
url "https://plugins.gradle.org/m2/"
}
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.14.RELEASE")
classpath("gradle.plugin.com.gorylenko.gradle-git-properties:gradle-git-properties:2.1.0")
}
}
List lombok = [
"org.projectlombok:lombok:${lombokVersion}"
]
allprojects {
group "com.webank.weevent"
version "1.6.0"
apply plugin: "java-library"
apply plugin: "maven"
apply plugin: "idea"
apply plugin: "eclipse"
apply plugin: "jacoco"
// jdk version
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava {
options.compilerArgs << "-Xlint:unchecked"
}
repositories {
mavenLocal()
// jms.jar
maven { url "http://repository.jboss.org/nexus/content/groups/public/"}
maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
// "org.ethereum.solcJ-all-0.4.25"
// maven { url "https://dl.bintray.com/ethereum/maven/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
mavenCentral()
jcenter()
}
// encoding type
[compileJava, compileTestJava, javadoc]*.options*.encoding = "UTF-8"
sourceSets {
main {
java {
srcDirs = ["src/main/java"]
}
resources {
srcDirs = ["src/main/resources"]
}
}
test {
java {
srcDirs = ["src/test/java"]
}
resources {
srcDirs = ["src/test/resources"]
}
}
}
clean.doLast {
file("dist/apps/").deleteDir()
file("dist/conf/").deleteDir()
file("dist/lib/").deleteDir()
}
configurations.all {
// exclude spring-boot's default logger logback
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
resolutionStrategy {
// fix security bug
force "com.alibaba:fastjson:${fastjsonVersion}"
// force "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
// force use netty
force "io.netty:netty-all:${nettyVersion}"
force "org.apache.zookeeper:zookeeper:${zookeeperVersion}"
}
}
// all project common lib
dependencies {
compileOnly(lombok)
annotationProcessor(lombok)
// apache commons
implementation("org.apache.commons:commons-lang3:${apacheCommonsVersion.lang3}")
implementation("org.apache.commons:commons-collections4:${apacheCommonsVersion.collections4}")
// jackson
implementation("com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}")
implementation("com.fasterxml.jackson.core:jackson-core:${jacksonVersion}")
implementation("com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}")
// slf4j logger
implementation("org.slf4j:slf4j-api:${slf4jVersion}")
// junit test
testImplementation("junit:junit:${junitVersion}")
testCompileOnly(lombok)
testAnnotationProcessor(lombok)
}
}
subprojects {
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.2.0'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.2.0'
}
}
test {
useJUnitPlatform()
}
jacoco {
toolVersion = "0.8.5"
reportsDir = file("$buildDir/customJacocoReportDir")
}
task codeCoverageReport(type: JacocoReport) {
executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")
subprojects.each {
sourceSets((SourceSet) it.sourceSets["main"])
}
reports {
xml.enabled true
html.enabled true
csv.enabled true
}
}
codeCoverageReport.dependsOn {
subprojects*.test
}