-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
52 lines (40 loc) · 957 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
45
46
47
48
49
50
51
52
ext {
projectVersion = '0.2.0' + (Boolean.valueOf(System.getProperty('release')) ? '' : '-SNAPSHOT')
// Command Line Application Framework
picocliVersion = '4.6.1'
// gRPC Framework
grpcVersion = '1.37.0'
protobufVersion = '3.15.8'
// Agrona
agronaVersion = '1.14.0'
// LMAX Disruptor
disruptorVersion = '4.0.0.RC1'
// Logging
slf4jVersion = '1.7.32'
log4jVersion = '2.17.0'
// Benchmarking
jmhVersion = '1.29'
// Code Generation
lombokVersion = '1.18.20'
tomcatAnnotationsVersion = '6.0.53'
jetbrainsAnnotationsVersion = '22.0.0'
// Testing
junitJupiterVersion = '5.8.2'
assertjVersion = '3.21.0'
// Apache Ratis
ratisVersion = '2.2.0'
ratisThirdPartyVersion = '0.7.0'
}
buildscript {
repositories {
gradlePluginPortal()
}
}
subprojects {
repositories {
mavenCentral()
}
}
wrapper {
gradleVersion = "8.1.1"
}