Skip to content

Commit 4ac3d54

Browse files
committed
Small improvements to the Deploying to Google Cloud guide
1 parent 2bce110 commit 4ac3d54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/main/asciidoc/deploying-to-google-cloud.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ Then, you will need to create a `src/main/appengine/app.yaml` file, let's keep i
6060

6161
[source, yaml]
6262
----
63-
runtime: java11
63+
runtime: java17
6464
----
6565

6666
This will create a default service for your App Engine application.
6767

6868
[NOTE]
6969
====
70-
You can also use the new Java 17 runtime by defining `runtime: java17` instead.
70+
You can also use another Java runtime supported by App Engine, for example, for Java 21, use `runtime: java21` instead.
7171
====
7272

7373
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`:
114114
<plugin>
115115
<groupId>com.google.cloud.tools</groupId>
116116
<artifactId>appengine-maven-plugin</artifactId>
117-
<version>2.4.4</version>
117+
<version>2.7.0</version>
118118
<configuration>
119119
<projectId>GCLOUD_CONFIG</projectId> <1>
120120
<version>gettingstarted</version>

0 commit comments

Comments
 (0)