Lines Matching +full:bazel +full:- +full:3
1 # Protocol Buffers - Google's data interchange format
5 https://developers.google.com/protocol-buffers/
13 $ protoc --java_out=${OUTPUT_DIR} path/to/your/proto/file
25 <artifactId>protobuf-java</artifactId>
34 protobuf-java-util package:
39 <artifactId>protobuf-java-util</artifactId>
48 compile 'com.google.protobuf:protobuf-java:3.11.0'
60 ### Use Java Protocol Buffers with Bazel
62 Bazel has native build rules to work with protobuf. For Java, you can use the
74 ### Build from Source - With Maven
85 $ protoc --version
90 3) Run the tests:
110 * protobuf-java: The core Java Protocol Buffers library. Most users only
112 * protobuf-java-util: Utilities to work with protos. It contains JSON support
113 as well as utilities to work with proto3 well-known
116 ### Build from Source - Without Maven
127 $ protoc --version
134 $ protoc --java_out=core/src/main/java -I../src \
137 3) Compile the code in core/src/main/java using whatever means you prefer.
143 * Protobuf minor version releases are backwards-compatible. If your code
149 * Protobuf major version releases may also be backwards-compatible with the
159 * Deprecated non-experimental APIs will be removed two years after the release
180 https://developers.google.com/protocol-buffers/