Skip to content

Commit d2018c7

Browse files
committed
Update dependencies.
1 parent 7367a71 commit d2018c7

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

build.gradle

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

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

1717
// https://github.com/google/guava/releases
18-
guavaVersion = '30.1-jre'
18+
guavaVersion = '30.1.1-jre'
1919
// https://github.com/protocolbuffers/protobuf/releases
20-
protobufVersion = '3.14.0'
20+
protobufVersion = '3.15.8'
2121
protobufGradlePluginVersion = '0.8.12'
2222

2323
// https://github.com/spring-projects/spring-boot/releases
24-
springBootVersion = '2.4.3'
24+
springBootVersion = '2.4.4'
2525
// https://github.com/spring-cloud/spring-cloud-release/releases
2626
springCloudVersion = '2020.0.1'
2727
// https://github.com/alibaba/spring-cloud-alibaba/releases
@@ -41,7 +41,7 @@ plugins {
4141
id 'org.springframework.boot' version "${springBootVersion}" apply false
4242
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
4343
id 'net.nemerosa.versioning' version '2.14.0'
44-
id 'com.google.protobuf' version '0.8.14'
44+
id 'com.google.protobuf' version '0.8.15'
4545
id 'io.franzbecker.gradle-lombok' version '4.0.0' apply false
4646
id 'com.github.ben-manes.versions' version '0.36.0' // gradle dependencyUpdates
4747
id 'com.diffplug.spotless' version '5.11.0'
@@ -60,7 +60,7 @@ if (hasProperty('buildScan')) {
6060
wrapper {
6161
// Update using:
6262
// ./gradlew wrapper --gradle-version=6.5 --distribution-type=bin
63-
gradleVersion = '6.8.3'
63+
gradleVersion = '7.0'
6464
}
6565

6666
def buildTimeAndDate = OffsetDateTime.now()
@@ -206,6 +206,9 @@ allprojects { project ->
206206

207207
if (project.name == 'grpc-common-spring-boot' || project.name == 'grpc-client-spring-boot-autoconfigure' || project.name == 'grpc-server-spring-boot-autoconfigure') {
208208
// Properly generate javadocs for the important projects
209+
lombok {
210+
version = "1.18.20"
211+
}
209212

210213
task delombok(type: DelombokTask, dependsOn: compileJava) {
211214
ext.outputDir = file("$buildDir/delombok")

0 commit comments

Comments
 (0)