From 592cc3951a0b517fb6105f0b0a9b312bf2de816b Mon Sep 17 00:00:00 2001 From: Abel Salgado Romero Date: Sat, 2 Dec 2023 22:42:00 +0100 Subject: [PATCH] Fix GRPC dependencies for GRPCApplicationTests (#3157) The main fix is bumping GRPC to 1.59.1, for some reason 1.59.0 fails. Additionally, * Use same GRPC version for SCG runtime and proto code generation. * The protobuf compiler version is set with a version to help bumping. --- spring-cloud-gateway-integration-tests/grpc/pom.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-cloud-gateway-integration-tests/grpc/pom.xml b/spring-cloud-gateway-integration-tests/grpc/pom.xml index c5a0f914fa..c783251a8f 100644 --- a/spring-cloud-gateway-integration-tests/grpc/pom.xml +++ b/spring-cloud-gateway-integration-tests/grpc/pom.xml @@ -11,7 +11,8 @@ Spring Cloud Gateway gRPC Integration Test - 1.59.0 + 3.25.1 + 1.59.1 @@ -112,9 +113,9 @@ protobuf-maven-plugin 0.6.1 - com.google.protobuf:protoc:3.19.4:exe:${os.detected.classifier} + com.google.protobuf:protoc:${protoc.version}:exe:${os.detected.classifier} grpc-java - io.grpc:protoc-gen-grpc-java:1.44.0:exe:${os.detected.classifier} + io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}