aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2017-01-10 09:37:12 -0800
committerEric Anderson <ejona@google.com>2017-01-10 11:09:49 -0800
commitde10b94128ab67393dabbb48535a144e25b2d877 (patch)
treec7a1fdf939373670802afde66756ae9fca2914d8 /README.md
parent7cb049776751b28b77bf00be9e327253d2ac8104 (diff)
downloadgrpc-grpc-java-de10b94128ab67393dabbb48535a144e25b2d877.tar.gz
readme: Downgrade protoc to 3.0.2 to match grpc-protobuf
Protobuf runtime 3.0.2 is included transitively via grpc-protobuf v1.0.3. Protoc doesn't have to match the version identically, but must not be newer than the runtime. We must wait until v1.1 release of grpc to bump protobuf version in the readme. Fixes #2578
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 74ea7a1f6..4a803152f 100644
--- a/README.md
+++ b/README.md
@@ -85,7 +85,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.5.0</version>
<configuration>
- <protocArtifact>com.google.protobuf:protoc:3.1.0:exe:${os.detected.classifier}</protocArtifact>
+ <protocArtifact>com.google.protobuf:protoc:3.0.2:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.3:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
@@ -123,7 +123,7 @@ buildscript {
protobuf {
protoc {
- artifact = "com.google.protobuf:protoc:3.1.0"
+ artifact = "com.google.protobuf:protoc:3.0.2"
}
plugins {
grpc {