-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
44 lines (37 loc) · 953 Bytes
/
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
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
}
ext {
projectVersion = '0.3.3' + (Boolean.valueOf(System.getProperty('release')) ? '' : '-SNAPSHOT')
buildConfigPluginVersion = '1.1.8'
gitVersionPluginVersion = '0.15.0'
shadowPluginVersion = '7.1.2'
protobufPluginVersion = '0.8.18'
jucxVersion = '1.13.0'
infinileapVersion = '0.1.0-SNAPSHOT'
agronaVersion = '1.16.0'
picocliVersion = '4.6.3'
kryoVersion = '5.3.0'
nettyVersion = '4.1.79.Final'
threadAffinityVersion = '3.20.0'
grpcVersion = '1.48.1'
protobufVersion = '3.21.4'
ycsbVersion = '0.17.0'
slf4jVersion = '1.7.36'
log4jVersion = '2.18.0'
junitJupiterVersion = '5.9.0'
}
subprojects {
buildDir = rootProject.file("build/${it.name}")
repositories {
mavenCentral()
}
}
wrapper {
gradleVersion = "7.5"
}