We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1c3031 commit fb62712Copy full SHA for fb62712
protobuf/readme.md
@@ -0,0 +1,12 @@
1
+## Compiling .proto files manually
2
+If you want to use the protocol buffers compiler `protoc` manually, navigate to the folder of the source code and
3
+execute the command below:
4
+
5
+> protoc -I=./main/resources --java_out=./main/java ./main/resources/adressbook.proto
6
7
8
+## Protobuf Maven Plugin
9
+With the `protoc-jar-maven-plugin` in the `pom.xml` the .proto files are searched under the `src/main/resources` folder
10
+and compiled automatically during the `generate-sources` phase of maven build lifecycle
11
12
0 commit comments