aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorKun Zhang <zhangkun83@users.noreply.github.com>2018-01-05 16:40:20 -0800
committerGitHub <noreply@github.com>2018-01-05 16:40:20 -0800
commit86d64122e5fa440827028db735a0cba938f8464f (patch)
treecd9f76ad60c49b1153012d0bc14f7d11d6f71736 /examples
parent5aed25210588b621bb040ce64a138a54d68dd08a (diff)
downloadgrpc-grpc-java-86d64122e5fa440827028db735a0cba938f8464f.tar.gz
Upgrade to Protobuf 3.5.1 and Protoc 3.5.1-1. (#3921)
protoc-3.5.0-linux-x86_64 introduced GLIBC_2.14 dependency and broke gRPC release process (https://github.com/google/protobuf/issues/4138). 3.5.1-1 is the proper re-build.
Diffstat (limited to 'examples')
-rw-r--r--examples/android/helloworld/app/build.gradle2
-rw-r--r--examples/android/routeguide/app/build.gradle2
-rw-r--r--examples/build.gradle2
-rw-r--r--examples/pom.xml2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/android/helloworld/app/build.gradle b/examples/android/helloworld/app/build.gradle
index ce5b34ddc..19aa25668 100644
--- a/examples/android/helloworld/app/build.gradle
+++ b/examples/android/helloworld/app/build.gradle
@@ -28,7 +28,7 @@ android {
protobuf {
protoc {
- artifact = 'com.google.protobuf:protoc:3.5.0'
+ artifact = 'com.google.protobuf:protoc:3.5.1-1'
}
plugins {
javalite {
diff --git a/examples/android/routeguide/app/build.gradle b/examples/android/routeguide/app/build.gradle
index a654fade4..ed64a83d6 100644
--- a/examples/android/routeguide/app/build.gradle
+++ b/examples/android/routeguide/app/build.gradle
@@ -25,7 +25,7 @@ android {
protobuf {
protoc {
- artifact = 'com.google.protobuf:protoc:3.5.0'
+ artifact = 'com.google.protobuf:protoc:3.5.1-1'
}
plugins {
javalite {
diff --git a/examples/build.gradle b/examples/build.gradle
index 07f2f5837..c2703bd71 100644
--- a/examples/build.gradle
+++ b/examples/build.gradle
@@ -37,7 +37,7 @@ dependencies {
protobuf {
protoc {
- artifact = 'com.google.protobuf:protoc:3.5.0'
+ artifact = 'com.google.protobuf:protoc:3.5.1-1'
}
plugins {
grpc {
diff --git a/examples/pom.xml b/examples/pom.xml
index d1a140bc0..3ccfb9262 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -67,7 +67,7 @@
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.5.0</version>
<configuration>
- <protocArtifact>com.google.protobuf:protoc:3.5.0:exe:${os.detected.classifier}</protocArtifact>
+ <protocArtifact>com.google.protobuf:protoc:3.5.1-1:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
</configuration>