From e136d8bdeb4160f4074371092f094f5b25e9b5f0 Mon Sep 17 00:00:00 2001 From: Chengyuan Zhang Date: Mon, 23 Nov 2020 11:01:34 -0800 Subject: [PATCH] gradle, README: Bump protobuf-gradle-plugin version to 0.8.14 (#7640) --- README.md | 2 +- examples/android/clientcache/build.gradle | 2 +- examples/android/helloworld/build.gradle | 2 +- examples/android/routeguide/build.gradle | 2 +- examples/android/strictmode/build.gradle | 2 +- examples/build.gradle | 2 +- examples/example-alts/build.gradle | 2 +- examples/example-gauth/build.gradle | 2 +- examples/example-jwt-auth/build.gradle | 2 +- examples/example-tls/build.gradle | 2 +- examples/example-xds/build.gradle | 2 +- settings.gradle | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index fd2e6a06c1..5ea212aa22 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ For protobuf-based codegen integrated with the Gradle build system, you can use [protobuf-gradle-plugin][]: ```gradle plugins { - id 'com.google.protobuf' version '0.8.13' + id 'com.google.protobuf' version '0.8.14' } protobuf { diff --git a/examples/android/clientcache/build.gradle b/examples/android/clientcache/build.gradle index 60883b8037..4c0443cb59 100644 --- a/examples/android/clientcache/build.gradle +++ b/examples/android/clientcache/build.gradle @@ -7,7 +7,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:4.0.0' - classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.13" + classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.14" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/examples/android/helloworld/build.gradle b/examples/android/helloworld/build.gradle index 60883b8037..4c0443cb59 100644 --- a/examples/android/helloworld/build.gradle +++ b/examples/android/helloworld/build.gradle @@ -7,7 +7,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:4.0.0' - classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.13" + classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.14" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/examples/android/routeguide/build.gradle b/examples/android/routeguide/build.gradle index 4f1c787337..b1ecf3541e 100644 --- a/examples/android/routeguide/build.gradle +++ b/examples/android/routeguide/build.gradle @@ -7,7 +7,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:4.0.0' - classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.13" + classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.14" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/examples/android/strictmode/build.gradle b/examples/android/strictmode/build.gradle index 60883b8037..4c0443cb59 100644 --- a/examples/android/strictmode/build.gradle +++ b/examples/android/strictmode/build.gradle @@ -7,7 +7,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:4.0.0' - classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.13" + classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.14" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/examples/build.gradle b/examples/build.gradle index a7797d63d6..ad62e49cf3 100644 --- a/examples/build.gradle +++ b/examples/build.gradle @@ -2,7 +2,7 @@ plugins { // Provide convenience executables for trying out the examples. id 'application' // ASSUMES GRADLE 5.6 OR HIGHER. Use plugin version 0.8.10 with earlier gradle versions - id 'com.google.protobuf' version '0.8.13' + id 'com.google.protobuf' version '0.8.14' // Generate IntelliJ IDEA's .idea & .iml project files id 'idea' } diff --git a/examples/example-alts/build.gradle b/examples/example-alts/build.gradle index 26468d7b2d..0ea7f4706f 100644 --- a/examples/example-alts/build.gradle +++ b/examples/example-alts/build.gradle @@ -2,7 +2,7 @@ plugins { // Provide convenience executables for trying out the examples. id 'application' // ASSUMES GRADLE 5.6 OR HIGHER. Use plugin version 0.8.10 with earlier gradle versions - id 'com.google.protobuf' version '0.8.13' + id 'com.google.protobuf' version '0.8.14' // Generate IntelliJ IDEA's .idea & .iml project files id 'idea' } diff --git a/examples/example-gauth/build.gradle b/examples/example-gauth/build.gradle index 21c569ea6c..8fe79059c0 100644 --- a/examples/example-gauth/build.gradle +++ b/examples/example-gauth/build.gradle @@ -2,7 +2,7 @@ plugins { // Provide convenience executables for trying out the examples. id 'application' // ASSUMES GRADLE 5.6 OR HIGHER. Use plugin version 0.8.10 with earlier gradle versions - id 'com.google.protobuf' version '0.8.13' + id 'com.google.protobuf' version '0.8.14' // Generate IntelliJ IDEA's .idea & .iml project files id 'idea' } diff --git a/examples/example-jwt-auth/build.gradle b/examples/example-jwt-auth/build.gradle index 307c5146f4..56dbdfea69 100644 --- a/examples/example-jwt-auth/build.gradle +++ b/examples/example-jwt-auth/build.gradle @@ -2,7 +2,7 @@ plugins { // Provide convenience executables for trying out the examples. id 'application' // ASSUMES GRADLE 5.6 OR HIGHER. Use plugin version 0.8.10 with earlier gradle versions - id 'com.google.protobuf' version '0.8.13' + id 'com.google.protobuf' version '0.8.14' // Generate IntelliJ IDEA's .idea & .iml project files id 'idea' } diff --git a/examples/example-tls/build.gradle b/examples/example-tls/build.gradle index 8612ff008a..cf3402038a 100644 --- a/examples/example-tls/build.gradle +++ b/examples/example-tls/build.gradle @@ -2,7 +2,7 @@ plugins { // Provide convenience executables for trying out the examples. id 'application' // ASSUMES GRADLE 5.6 OR HIGHER. Use plugin version 0.8.10 with earlier gradle versions - id 'com.google.protobuf' version '0.8.13' + id 'com.google.protobuf' version '0.8.14' // Generate IntelliJ IDEA's .idea & .iml project files id 'idea' } diff --git a/examples/example-xds/build.gradle b/examples/example-xds/build.gradle index f15e4e7575..453c4be13c 100644 --- a/examples/example-xds/build.gradle +++ b/examples/example-xds/build.gradle @@ -1,7 +1,7 @@ plugins { id 'application' // Provide convenience executables for trying out the examples. // ASSUMES GRADLE 5.6 OR HIGHER. Use plugin version 0.8.10 with earlier gradle versions - id 'com.google.protobuf' version '0.8.13' + id 'com.google.protobuf' version '0.8.14' // Generate IntelliJ IDEA's .idea & .iml project files id 'idea' id 'java' diff --git a/settings.gradle b/settings.gradle index 0b75e7f385..f173c85392 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,7 +5,7 @@ pluginManagement { id "com.github.johnrengelman.shadow" version "2.0.4" id "com.github.kt3k.coveralls" version "2.0.1" id "com.google.osdetector" version "1.4.0" - id "com.google.protobuf" version "0.8.13" + id "com.google.protobuf" version "0.8.14" id "digital.wup.android-maven-publish" version "3.6.2" id "me.champeau.gradle.japicmp" version "0.2.5" id "me.champeau.gradle.jmh" version "0.5.0"