Skip to content

Commit a64ffe6

Browse files
committed
Update dependencies and plugins
- grpc 1.42.1 - protobuf 3.19.1 - spring-boot 2.5.6
1 parent d616e98 commit a64ffe6

File tree

5 files changed

+171
-122
lines changed

5 files changed

+171
-122
lines changed

build.gradle

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@ buildscript {
1212
projectVersion = '2.13.0-SNAPSHOT'
1313

1414
// https://github.com/grpc/grpc-java/releases
15-
grpcVersion = '1.40.1'
15+
grpcVersion = '1.42.1'
1616

1717
// https://github.com/google/guava/releases
18-
guavaVersion = '30.1.1-jre'
18+
guavaVersion = '31.0.1-jre'
1919
// https://github.com/protocolbuffers/protobuf/releases
20-
protobufVersion = '3.15.8'
21-
protobufGradlePluginVersion = '0.8.12'
20+
protobufVersion = '3.19.1'
21+
protobufGradlePluginVersion = '0.8.18'
2222

2323
// https://github.com/spring-projects/spring-boot/releases
24-
springBootVersion = '2.4.5'
24+
springBootVersion = '2.5.6'
2525
// https://github.com/spring-cloud/spring-cloud-release/releases
26-
springCloudVersion = '2020.0.2'
26+
springCloudVersion = '2020.0.4'
2727
// https://github.com/alibaba/spring-cloud-alibaba/releases
2828
springCloudAlibabaNacosVersion = '2021.1'
2929
// https://github.com/spring-projects/spring-security-oauth/releases
3030
springSecurityOAuthVersion = '2.5.1.RELEASE'
3131

32-
lombokPluginVersion = '4.0.0'
33-
versioningPluginVersion = '2.14.0'
34-
versionsPluginVersion = '0.29.0'
32+
lombokPluginVersion = '5.0.0'
33+
versioningPluginVersion = '2.15.1'
34+
versionsPluginVersion = '0.39.0'
3535
}
3636
}
3737

@@ -40,11 +40,11 @@ plugins {
4040
id 'java-library'
4141
id 'org.springframework.boot' version "${springBootVersion}" apply false
4242
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
43-
id 'net.nemerosa.versioning' version '2.14.0'
44-
id 'com.google.protobuf' version '0.8.15'
45-
id 'io.franzbecker.gradle-lombok' version '4.0.0' apply false
46-
id 'com.github.ben-manes.versions' version '0.36.0' // gradle dependencyUpdates
47-
id 'com.diffplug.spotless' version '5.11.0'
43+
id 'net.nemerosa.versioning' version "${versioningPluginVersion}"
44+
id 'com.google.protobuf' version "${protobufGradlePluginVersion}"
45+
id 'io.franzbecker.gradle-lombok' version "${lombokPluginVersion}" apply false
46+
id 'com.github.ben-manes.versions' version "${versionsPluginVersion}" // gradle dependencyUpdates
47+
id 'com.diffplug.spotless' version '6.0.0'
4848
}
4949

5050
// If you attempt to build without the `--scan` parameter in `gradle 6.0+` it will cause a build error that it can't find
@@ -59,8 +59,8 @@ if (hasProperty('buildScan')) {
5959
// you may use IntelliJ's project configuration to make it use the gradle version defined in the gradle script's wrapper section
6060
wrapper {
6161
// Update using:
62-
// ./gradlew wrapper --gradle-version=6.5 --distribution-type=bin
63-
gradleVersion = '7.0'
62+
// ./gradlew wrapper --gradle-version=7.3 --distribution-type=bin
63+
gradleVersion = '7.3'
6464
}
6565

6666
def buildTimeAndDate = OffsetDateTime.now()

docs/en/versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Current version.
4747

4848
| Version | spring-boot | spring-cloud | gRPC | Date |
4949
|:-------:|:-----------:|:------------:|:----:| ---: |
50-
| 2.13.0* | 2.4.5 | 2020.0.2 | 1.37.0 | TBA |
50+
| 2.13.0* | 2.5.6 | 2020.0.4 | 1.42.1 | Nov, 2021 |
5151
| 2.12.0 | 2.4.5 | 2020.0.2 | 1.37.0 | Mai, 2021 |
5252
| 2.11.0 | 2.3.8 | Hoxton | 1.35.0 | Feb, 2021 |
5353
| 2.10.1 | 2.3.3 | Hoxton | 1.31.1 | Aug, 2020 |

gradle/wrapper/gradle-wrapper.jar

333 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)