The official documentation states the following with respect to generating client and server code.
Next we need to generate the gRPC client and server interfaces from our .proto service definition. We do this using the protocol buffer compiler protoc with a special gRPC Java plugin. You need to use the proto3 compiler (which supports both proto2 and proto3 syntax) in order to generate gRPC services.
Unfortunately, it simply suggests that one uses Maven or Gradle to generate the actual client and server stubs.
What is the actual protoc
command line invocation for this generation?