@@ -9,40 +9,40 @@ buildscript {
9
9
}
10
10
}
11
11
ext {
12
- projectVersion = ' 2.9.0.RELEASE '
12
+ projectVersion = ' 2.10.0-SNAPSHOT '
13
13
14
14
// https://github.com/grpc/grpc-java/releases
15
- grpcVersion = ' 1.30 .0'
15
+ grpcVersion = ' 1.31 .0'
16
16
// https://github.com/protocolbuffers/protobuf/releases
17
- protobufVersion = ' 3.12.2 '
18
- protobufGradlePluginVersion = ' 0.8.11 '
17
+ protobufVersion = ' 3.12.4 '
18
+ protobufGradlePluginVersion = ' 0.8.12 '
19
19
20
20
// https://github.com/spring-projects/spring-boot/releases
21
- springBootVersion = ' 2.3.1 .RELEASE'
21
+ springBootVersion = ' 2.3.2 .RELEASE'
22
22
// https://github.com/spring-cloud/spring-cloud-release/releases
23
- springCloudVersion = ' Hoxton.SR5 '
23
+ springCloudVersion = ' Hoxton.SR7 '
24
24
// https://github.com/alibaba/spring-cloud-alibaba/releases
25
25
springCloudAlibabaNacosVersion = ' 2.2.1.RELEASE'
26
26
// https://github.com/spring-projects/spring-security-oauth/releases/tag/2.5.0.RELEASE
27
27
springSecurityOAuthVersion = ' 2.5.0.RELEASE'
28
28
29
- lombokPluginVersion = ' 3.2 .0'
30
- versioningPluginVersion = ' 2.10 .0'
31
- versionsPluginVersion = ' 0.27 .0'
29
+ lombokPluginVersion = ' 4.0 .0'
30
+ versioningPluginVersion = ' 2.14 .0'
31
+ versionsPluginVersion = ' 0.29 .0'
32
32
}
33
33
}
34
34
35
35
plugins {
36
36
id ' java'
37
37
id ' java-library'
38
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.1 .RELEASE' apply false
39
+ id ' org.springframework.boot' version ' 2.3.2 .RELEASE' apply false
40
40
id ' io.spring.dependency-management' version ' 1.0.9.RELEASE'
41
- id ' net.nemerosa.versioning' version ' 2.13.1 '
41
+ id ' net.nemerosa.versioning' version ' 2.14.0 '
42
42
id ' com.google.protobuf' version ' 0.8.12'
43
43
id ' io.franzbecker.gradle-lombok' version ' 4.0.0' apply false
44
- id ' com.github.ben-manes.versions' version ' 0.28 .0' // gradle dependencyUpdates (Takes quite some time)
45
- id ' com.diffplug.gradle. spotless' version ' 4.3 .0'
44
+ id ' com.github.ben-manes.versions' version ' 0.29 .0' // gradle dependencyUpdates (Takes quite some time)
45
+ id ' com.diffplug.spotless' version ' 5.1 .0'
46
46
}
47
47
48
48
// If you attempt to build without the `--scan` parameter in `gradle 6.0+` it will cause a build error that it can't find
@@ -58,7 +58,7 @@ if (hasProperty('buildScan')) {
58
58
wrapper {
59
59
// Update using:
60
60
// ./gradlew wrapper --gradle-version=6.5 --distribution-type=bin
61
- gradleVersion = ' 6.5'
61
+ gradleVersion = ' 6.5.1 '
62
62
}
63
63
64
64
def buildTimeAndDate = OffsetDateTime . now()
@@ -74,7 +74,7 @@ allprojects {
74
74
apply plugin : ' idea'
75
75
apply plugin : ' eclipse'
76
76
apply plugin : ' io.spring.dependency-management'
77
- apply plugin : ' com.diffplug.gradle. spotless'
77
+ apply plugin : ' com.diffplug.spotless'
78
78
apply plugin : ' io.franzbecker.gradle-lombok'
79
79
80
80
compileJava {
@@ -233,7 +233,7 @@ allprojects { project ->
233
233
' https://static.javadoc.io/org.springframework.cloud/spring-cloud-commons/' + springCloudCommonsVersion + ' /' ,
234
234
// 'https://static.javadoc.io/io.zipkin.brave/brave/' + braveInstrumentationGrpc + '/', // Requires javadoc 11
235
235
// 'https://static.javadoc.io/io.zipkin.brave/brave-instrumentation-grpc/' + braveInstrumentationGrpc + '/', // Requires javadoc 11
236
- ' https://google.github.io/guava/releases/26 .0-android/api/docs/'
236
+ ' https://google.github.io/guava/releases/29 .0-android/api/docs/'
237
237
]
238
238
}
239
239
}
0 commit comments