From 9a70c1b178c19d55cb7eade95aaf6d5a4d58ca03 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Wed, 28 Jun 2023 15:20:35 -0700 Subject: [PATCH] compiler: Don't mention C++ Protobuf version in build message There's been minor version skew between Java and C++ many times because certain releases are one-language-only. And now we have more severe skew, where we can't readily upgrade to newer C++ Protobuf versions because of build complexity. Let's just remove the version, and have the canonical C++ Protobuf version live in COMPILING.md. See #10317 --- compiler/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/build.gradle b/compiler/build.gradle index 12798208cf9..d1e652dc92f 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -201,7 +201,7 @@ protobuf { } } -println "*** Building codegen requires Protobuf version ${libs.versions.protobuf.get()}" +println "*** Building codegen requires Protobuf" println "*** Please refer to https://github.com/grpc/grpc-java/blob/master/COMPILING.md#how-to-build-code-generation-plugin" tasks.register("buildArtifacts", Copy) {