-
Hi! At the moment I am trying to understand how to use the Quarkus Gradle plugin. Currently, it is only applied in the "application" subproject. I have recently started working with gRPC and wanted to include that in this project. A probable scenario would be that the domain needs to call a remote service, so I started to set up a gRPC client in the "driven-adapters" subproject. I found in the official Quarkus gRPC guide that I should configure the Quarkus Gradle plugin to be aware of my special directory for proto files. However, after just pasting in a simple "Hello World" proto file and trying to build, I get an error that the Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
Beta Was this translation helpful? Give feedback.
-
At first sight i would say you have to configure the |
Beta Was this translation helpful? Give feedback.
If you really want to have the generated classes in the module
driven-adapters
then I would recommend you to generate the classes with theprotobuf-gradle-plugin
instead ofquarkus-grpc
.