Skip to content

Commit 404220c

Browse files
authored
chore(deps): update dependency com.google.cloud.tools:appengine-gradle-plugin to v2.4.2 (#5905)
[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.cloud.tools:appengine-gradle-plugin](https://togithub.com/GoogleCloudPlatform/app-gradle-plugin) | `2.2.0` -> `2.4.2` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud.tools:appengine-gradle-plugin/2.4.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud.tools:appengine-gradle-plugin/2.4.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud.tools:appengine-gradle-plugin/2.4.2/compatibility-slim/2.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud.tools:appengine-gradle-plugin/2.4.2/confidence-slim/2.2.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>GoogleCloudPlatform/app-gradle-plugin</summary> ### [`v2.4.2`](https://togithub.com/GoogleCloudPlatform/app-gradle-plugin/blob/master/CHANGELOG.md#&#8203;242) ##### Changed - Update to appengine-plugins-core 0.9.5 ([#&#8203;405](../../pull/405)) ### [`v2.4.1`](https://togithub.com/GoogleCloudPlatform/app-gradle-plugin/blob/master/CHANGELOG.md#&#8203;241) ##### Fixed - Fixed bug when using `plugins` block in `build.gradle` ([#&#8203;388](../../pull/388)) ### [`v2.4.0`](https://togithub.com/GoogleCloudPlatform/app-gradle-plugin/blob/master/CHANGELOG.md#&#8203;240) ##### Added - `appengine.tools.verbosity` option for defining gcloud log verbosity ([#&#8203;384](../../pull/384)) ### [`v2.3.0`](https://togithub.com/GoogleCloudPlatform/app-gradle-plugin/blob/master/CHANGELOG.md#&#8203;230) ##### Changed - Update to appengine-plugins-core 0.9.0 ([#&#8203;377](../../pull/377)) - Includes support for binary artifacts for app.yaml based deployments ([appengine-plugins-core:#&#8203;840](https://togithub.com/GoogleCloudPlatform/appengine-plugins-core/issues/840)) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Never, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/GoogleCloudPlatform/java-docs-samples).
1 parent e123471 commit 404220c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

appengine-java8/bigtable/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript { // Configuration for building
1818
mavenCentral()
1919
}
2020
dependencies {
21-
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.2.0'
21+
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.2'
2222
classpath 'org.akhikhl.gretty:gretty:+'
2323
}
2424
}

appengine-java8/endpoints-v2-backend/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript {
2121
// [START endpoints_plugin]
2222
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:2.0.1'
2323
// [END endpoints_plugin]
24-
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.2.0'
24+
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.2'
2525
}
2626
}
2727

appengine-java8/endpoints-v2-guice/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919

2020
dependencies {
2121
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.3'
22-
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.2.0'
22+
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.2'
2323
}
2424
}
2525

appengine-java8/endpoints-v2-migration/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript { // Configuration for building
2020
}
2121
dependencies {
2222
// App Engine Gradle plugin
23-
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.2.0'
23+
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.2'
2424

2525
// Endpoints Frameworks Gradle plugin
2626
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.3'

appengine-java8/endpoints-v2-skeleton/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020

2121
dependencies {
2222
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.3'
23-
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.2.0'
23+
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.2'
2424
}
2525
}
2626
// [END build_script]

appengine-java8/helloworld/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript { // Configuration for building
1818
mavenCentral()
1919
}
2020
dependencies {
21-
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.2.0' // If a newer version is available, use it
21+
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.2' // If a newer version is available, use it
2222
}
2323
}
2424

flexible/helloworld/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript { // Configuration for building
1818
mavenCentral()
1919
}
2020
dependencies {
21-
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.2.0'
21+
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.2'
2222
classpath 'org.akhikhl.gretty:gretty:+'
2323
}
2424
}

0 commit comments

Comments
 (0)