Skip to content

Commit

Permalink
Small improvements to the Deploying to Google Cloud guide
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Oct 30, 2024
1 parent 2bce110 commit 4ac3d54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/main/asciidoc/deploying-to-google-cloud.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -114,7 +114,7 @@ First, add the plugin to your `pom.xml`:
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>2.4.4</version>
<version>2.7.0</version>
<configuration>
<projectId>GCLOUD_CONFIG</projectId> <1>
<version>gettingstarted</version>
Expand Down

0 comments on commit 4ac3d54

Please sign in to comment.