From 4ac3d5482031620fbe067415a89afd42a625e966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Wed, 30 Oct 2024 13:27:36 +0100 Subject: [PATCH] Small improvements to the Deploying to Google Cloud guide --- docs/src/main/asciidoc/deploying-to-google-cloud.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/main/asciidoc/deploying-to-google-cloud.adoc b/docs/src/main/asciidoc/deploying-to-google-cloud.adoc index 664b7c28d395b..7a3a7ea54e64c 100644 --- a/docs/src/main/asciidoc/deploying-to-google-cloud.adoc +++ b/docs/src/main/asciidoc/deploying-to-google-cloud.adoc @@ -60,14 +60,14 @@ Then, you will need to create a `src/main/appengine/app.yaml` file, let's keep i [source, yaml] ---- -runtime: java11 +runtime: java17 ---- This will create a default service for your App Engine application. [NOTE] ==== -You can also use the new Java 17 runtime by defining `runtime: java17` instead. +You can also use another Java runtime supported by App Engine, for example, for Java 21, use `runtime: java21` instead. ==== App Engine Standard does not support the default Quarkus' specific packaging layout, therefore, you must set up your application to be packaged as an uber-jar via your `application.properties` file: @@ -114,7 +114,7 @@ First, add the plugin to your `pom.xml`: com.google.cloud.tools appengine-maven-plugin - 2.4.4 + 2.7.0 GCLOUD_CONFIG <1> gettingstarted