Skip to content

Commit

Permalink
Bump protobuf-gradle-plugin to 0.8.5
Browse files Browse the repository at this point in the history
The version bump happened in some places already, but many references
were missed.

This fixes the following warning that shows up with newer versions of
Gradle:
> Using TaskInputs.file() with something that doesn't resolve to a File
> object has been deprecated and is scheduled to be removed in Gradle
> 5.0. Use TaskInputs.files() instead.
  • Loading branch information
ejona86 committed Aug 3, 2018
1 parent 2aa02fd commit c42d5bb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -120,7 +120,7 @@ buildscript {
dependencies {
// ASSUMES GRADLE 2.12 OR HIGHER. Use plugin version 0.7.5 with earlier
// gradle versions
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.3'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.5'
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/android/clientcache/build.gradle
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.3"
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.5"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
2 changes: 1 addition & 1 deletion examples/android/helloworld/build.gradle
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.3"
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.5"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
2 changes: 1 addition & 1 deletion examples/android/routeguide/build.gradle
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.3"
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.5"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle
Expand Up @@ -8,7 +8,7 @@ buildscript {
}
dependencies { // ASSUMES GRADLE 2.12 OR HIGHER. Use plugin version 0.7.5 with earlier
// gradle versions
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.3' }
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.5' }
}

repositories {
Expand Down

0 comments on commit c42d5bb

Please sign in to comment.