• Home
  • Raw
  • Download

Lines Matching +full:protocol +full:- +full:tests +full:- +full:core

1 # Protocol Buffers - Google's data interchange format
5 https://developers.google.com/protocol-buffers/
7 ## Use Java Protocol Buffers
9 To use protobuf in Java, first obtain the protocol compiler (a.k.a., protoc,
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 implementation 'com.google.protobuf:protobuf-java:3.21.12'
52 ### Use Java Protocol Buffers on Android
60 ### Use Java Protocol Buffers with Bazel
74 ### Build from Source - With Maven
85 $ protoc --version
90 3) Run the tests:
94 If some tests fail, this library may not work correctly on your
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
120 running unit tests and only describes how to install the core protobuf
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
177 The complete documentation for Protocol Buffers is available via the
180 https://developers.google.com/protocol-buffers/
182 ## Kotlin Protocol Buffers
184 Code to support more idiomatic Kotlin protocol buffers has been added to the