-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
37 lines (34 loc) · 1.06 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
// Required by spotless. https://github.com/diffplug/spotless/issues/747
buildscript {
ext {
// plugin versions
vSpringBoot = '3.3.6'
vHidetakeSwagger = '2.19.2'
vGoogleProtobuf = '0.9.4'
// library versions - constraints to address vulns
vIoNetty = '4.1.115.Final'
vIoNettyNative = '2.0.69.Final'
vLogback = '1.5.15'
// library versions
vPmd = '7.10.0'
vGoogleProtobufProtoc = '3.25.5'
vTerraCommonLib = '1.1.22-SNAPSHOT'
vApacheCommonsText = '1.12.0'
vApacheTomcat = '10.1.34'
vSlf4jApi = '2.0.16'
vSpotBugs = '4.8.6'
vJackson = '2.18.0'
vJersey = '3.1.9'
vSwaggerAnnotations = '2.2.25'
vSwaggerCodegen = '3.0.63'
vPicocliVersion = '4.7.6'
vJunit5 = '5.11.3'
}
}
tasks.named('dependencies') {
dependsOn(':underlay:dependencies')
dependsOn(':service:dependencies')
dependsOn(':cli:dependencies')
dependsOn(':indexer:dependencies')
dependsOn(':annotationProcessor:dependencies')
}