aboutsummaryrefslogtreecommitdiff
path: root/java/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'java/README.md')
-rw-r--r--java/README.md18
1 files changed, 15 insertions, 3 deletions
diff --git a/java/README.md b/java/README.md
index 5e4fb8b4..def4fd9a 100644
--- a/java/README.md
+++ b/java/README.md
@@ -13,13 +13,17 @@ generate Java code for your .proto files:
$ protoc --java_out=${OUTPUT_DIR} path/to/your/proto/file
Include the generated Java files in your project and add a dependency on the
-protobuf Java runtime. If you are using Maven, use the following:
+protobuf Java runtime.
+
+### Maven
+
+If you are using Maven, use the following:
```xml
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
- <version>3.5.1</version>
+ <version>3.6.1</version>
</dependency>
```
@@ -33,10 +37,18 @@ protobuf-java-util package:
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java-util</artifactId>
- <version>3.5.1</version>
+ <version>3.6.1</version>
</dependency>
```
+### Gradle
+
+If you are using Gradle, add the following to your `build.gradle` file's dependencies:
+```
+ compile 'com.google.protobuf:protobuf-java:3.6.1'
+```
+Again, be sure to check that the version number maches (or is newer than) the version number of protoc that you are using.
+
### Use Java Protocol Buffers on Android
For Android users, it's recommended to use protobuf Java Lite runtime because