@@ -12,13 +12,13 @@ buildscript {
12
12
projectVersion = ' 2.11.0-SNAPSHOT'
13
13
14
14
// https://github.com/grpc/grpc-java/releases
15
- grpcVersion = ' 1.34.1 '
15
+ grpcVersion = ' 1.35.0 '
16
16
// https://github.com/protocolbuffers/protobuf/releases
17
17
protobufVersion = ' 3.14.0'
18
18
protobufGradlePluginVersion = ' 0.8.12'
19
19
20
20
// https://github.com/spring-projects/spring-boot/releases
21
- springBootVersion = ' 2.3.7 .RELEASE'
21
+ springBootVersion = ' 2.3.8 .RELEASE'
22
22
// https://github.com/spring-cloud/spring-cloud-release/releases
23
23
springCloudVersion = ' Hoxton.SR9'
24
24
// https://github.com/alibaba/spring-cloud-alibaba/releases
@@ -35,14 +35,13 @@ buildscript {
35
35
plugins {
36
36
id ' java'
37
37
id ' java-library'
38
- // future improvement would be to use the version declared above in the ext block instead of repeating it here
39
- id ' org.springframework.boot' version ' 2.3.7.RELEASE' apply false
40
- id ' io.spring.dependency-management' version ' 1.0.10.RELEASE'
38
+ id ' org.springframework.boot' version " ${ springBootVersion} " apply false
39
+ id ' io.spring.dependency-management' version ' 1.0.11.RELEASE'
41
40
id ' net.nemerosa.versioning' version ' 2.14.0'
42
41
id ' com.google.protobuf' version ' 0.8.14'
43
42
id ' io.franzbecker.gradle-lombok' version ' 4.0.0' apply false
44
43
id ' com.github.ben-manes.versions' version ' 0.36.0' // gradle dependencyUpdates
45
- id ' com.diffplug.spotless' version ' 5.8.2 '
44
+ id ' com.diffplug.spotless' version ' 5.9.0 '
46
45
}
47
46
48
47
// If you attempt to build without the `--scan` parameter in `gradle 6.0+` it will cause a build error that it can't find
@@ -158,6 +157,7 @@ allprojects { project ->
158
157
mavenBom " org.springframework.cloud:spring-cloud-dependencies:${ springCloudVersion} "
159
158
mavenBom " com.google.protobuf:protobuf-bom:${ protobufVersion} "
160
159
mavenBom " io.grpc:grpc-bom:${ grpcVersion} "
160
+ mavenBom " org.junit:junit-bom:5.7.0"
161
161
}
162
162
}
163
163
0 commit comments