You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Gradle build with quarkus plugin and 'io.quarkus:quarkus-grpc' dependency tries to compile protoc files in src/main/proto. It failed for me because of issue #11550 , but finding the real reason wasn't easy task because protoc compilation process errors is not printed anywhere.
Implementation ideas
Gradle should print command before executing it when --debug is passed to the gradle.
protoc process output should get to the console when --debug or even --info is passed to the gradle.
The text was updated successfully, but these errors were encountered:
I had a look and @glefloch is right. This is a similar issue as the one we fixed in #10137. I'll see how easy it is to pass the context of which build tool is initiating this code gen, in this part of the code, so that I can reuse this or similar logic here.
Description
Gradle build with quarkus plugin and 'io.quarkus:quarkus-grpc' dependency tries to compile protoc files in src/main/proto. It failed for me because of issue #11550 , but finding the real reason wasn't easy task because protoc compilation process errors is not printed anywhere.
Implementation ideas
Gradle should print command before executing it when --debug is passed to the gradle.
protoc process output should get to the console when --debug or even --info is passed to the gradle.
The text was updated successfully, but these errors were encountered: