Skip to content

Commit 2a30c87

Browse files
committed
Update dependencies
1 parent 55ad351 commit 2a30c87

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ buildscript {
1616
// https://github.com/google/guava/releases
1717
guavaVersion = '32.1.2-jre'
1818
// https://github.com/protocolbuffers/protobuf/releases
19-
protobufVersion = '3.23.4'
19+
protobufVersion = '3.24.3'
2020
protobufGradlePluginVersion = '0.9.4'
2121

2222
// https://github.com/spring-projects/spring-boot/releases
23-
springBootVersion = '3.1.3'
23+
springBootVersion = '3.1.4'
2424
// https://github.com/spring-cloud/spring-cloud-release/releases
2525
springCloudVersion = '2021.0.8'
2626
// https://github.com/alibaba/spring-cloud-alibaba/releases
2727
springCloudAlibabaNacosVersion = '2021.1'
2828

2929
lombokPluginVersion = '8.1.0'
30-
versioningPluginVersion = '2.15.1'
31-
versionsPluginVersion = '0.47.0'
30+
versioningPluginVersion = '3.0.0'
31+
versionsPluginVersion = '0.48.0'
3232

3333
// https://github.com/JetBrains/kotlin/releases
3434
kotlinVersion = "1.8.22"
@@ -44,7 +44,7 @@ plugins {
4444
id 'com.google.protobuf' version "${protobufGradlePluginVersion}"
4545
id 'io.freefair.lombok' version "${lombokPluginVersion}" apply false
4646
id 'com.github.ben-manes.versions' version "${versionsPluginVersion}" // gradle dependencyUpdates
47-
id 'com.diffplug.spotless' version '6.13.0'
47+
id 'com.diffplug.spotless' version '6.21.0'
4848
id 'org.jetbrains.kotlin.jvm' version "${kotlinVersion}" apply false
4949
}
5050

grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/advice/GrpcExceptionHandler.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
*
3737
* <pre>
3838
* {@code @GrpcExceptionHandler
39-
* public Status handleIllegalArgumentException(IllegalArgumentException e){
40-
* return Status.INVALID_ARGUMENT
41-
* .withDescription(e.getMessage())
42-
* .withCause(e);
43-
* }
44-
* }
39+
* public Status handleIllegalArgumentException(IllegalArgumentException e) {
40+
* return Status.INVALID_ARGUMENT
41+
* .withDescription(e.getMessage())
42+
* .withCause(e);
43+
* }
44+
* }
4545
* </pre>
4646
*
4747
* <b>With</b> {@link io.grpc.Metadata}:

0 commit comments

Comments
 (0)