aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorzpencer <spencerfang@google.com>2017-08-31 15:24:33 -0700
committerGitHub <noreply@github.com>2017-08-31 15:24:33 -0700
commitb579528c899cbdda9743625f404db8e2dec2d93a (patch)
tree3421c18bbf84be6d835a26992228c5cdf0cb0f85 /README.md
parent4c721b7490a5d05633ec797d1ae8281bac4054c1 (diff)
downloadgrpc-grpc-java-b579528c899cbdda9743625f404db8e2dec2d93a.tar.gz
Update README to reference 1.6.1 (#3428)
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/README.md b/README.md
index 10361fa2d..dbf355531 100644
--- a/README.md
+++ b/README.md
@@ -28,37 +28,37 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty</artifactId>
- <version>1.4.0</version>
+ <version>1.6.1</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
- <version>1.4.0</version>
+ <version>1.6.1</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
- <version>1.4.0</version>
+ <version>1.6.1</version>
</dependency>
```
Or for Gradle with non-Android, add to your dependencies:
```gradle
-compile 'io.grpc:grpc-netty:1.4.0'
-compile 'io.grpc:grpc-protobuf:1.4.0'
-compile 'io.grpc:grpc-stub:1.4.0'
+compile 'io.grpc:grpc-netty:1.6.1'
+compile 'io.grpc:grpc-protobuf:1.6.1'
+compile 'io.grpc:grpc-stub:1.6.1'
```
For Android client, use `grpc-okhttp` instead of `grpc-netty` and
`grpc-protobuf-lite` or `grpc-protobuf-nano` instead of `grpc-protobuf`:
```gradle
-compile 'io.grpc:grpc-okhttp:1.4.0'
-compile 'io.grpc:grpc-protobuf-lite:1.4.0'
-compile 'io.grpc:grpc-stub:1.4.0'
+compile 'io.grpc:grpc-okhttp:1.6.1'
+compile 'io.grpc:grpc-protobuf-lite:1.6.1'
+compile 'io.grpc:grpc-stub:1.6.1'
```
[the JARs]:
-http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.4.0%22
+http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.6.1%22
Development snapshots are available in [Sonatypes's snapshot
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -87,7 +87,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.3.0:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
- <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.4.0:exe:${os.detected.classifier}</pluginArtifact>
+ <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.6.1:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
@@ -123,11 +123,11 @@ buildscript {
protobuf {
protoc {
- artifact = "com.google.protobuf:protoc:3.2.0"
+ artifact = "com.google.protobuf:protoc:3.3.0"
}
plugins {
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:1.4.0'
+ artifact = 'io.grpc:protoc-gen-grpc-java:1.6.1'
}
}
generateProtoTasks {