i created proto generated java files jar file using maven plugin "org.xolstice.maven.plugins". it contains all the java files required and imported into a project with maven dependency. no compilation issues. while execution am getting the UNIMPLEMENTED exception.
Caused by: io.grpc.StatusRuntimeException: UNIMPLEMENTED: Method not found!
at io.grpc.stub.ClientCalls.toStatusRuntimeException(ClientCalls.java:240)
at io.grpc.stub.ClientCalls.getUnchecked(ClientCalls.java:221)
at io.grpc.stub.ClientCalls.blockingUnaryCall(ClientCalls.java:140)
I tried by placing the protoc generated files it's working as expected. but i don't want this to be as java source inside project. because the generated sources has very huge java files for compilation it's taking long time every time i build, so i required it as a jar file.