Hello, I am trying to generate java classes using the protobuf-maven-plugin. I can generate classes, however there is only <type>OuterClasse.java generated. No service classes are generated. Any idea why this is?
Fabien Hermenier
@fhermeni
Hello. When I use protobuf:compile it generates the code of all but my service. When I use protobuf:compile-custom, it generates only the code of my service. So a lot of code is missing
Got it, it is because the output directory where the same. Using <clearOutputDirectory>false</clearOutputDirectory>solved the problem