Skip to content

Commit 46821aa

Browse files
authored
Update app engine plugin and readmes for Java 11 (GoogleCloudPlatform#1424)
* Update plugin * Update ReadMes
1 parent 8782eda commit 46821aa

File tree

18 files changed

+21
-21
lines changed

18 files changed

+21
-21
lines changed

appengine-java11/README.md

-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ standard Java 11 environment.
1010

1111
## Prerequisites
1212

13-
**Private Alpha**
14-
To access the Java 11 Google App Engine standard runtime, you'll need to apply
15-
to become part of the App Engine [Alpha program](https://docs.google.com/forms/d/e/1FAIpQLSf5uE5eknJjFEmcVBI6sMitBU0QQ1LX_J7VrA_OTQabo6EEEw/viewform).
16-
17-
1813
### Download Maven
1914

2015
These samples use the [Apache Maven][maven] build system. Before getting
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Embedded Jetty Server for running WAR files on Google App Engine Standard with Java 11
2+
3+
This sample demonstrates an embedded Jetty server which instantiates an HTTP server to run a WAR file.
4+
5+
For more information on the Java 11 runtime, see [Migrating your App Engine app from Java 8 to Java 11](https://cloud.google.com/appengine/docs/standard/java11/java-differences).

appengine-java11/custom-entrypoint/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Hello World App for Google App Engine Standard with Java 11
1+
# Using a Custom Entrypoint on Google App Engine Standard with Java 11
22

33
This sample shows how to deploy an application to Google App Engine, using the
44
`entrypoint` element in the [app.yaml](app.yaml) to start your application. The

appengine-java11/gaeinfo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Copyright 2019 Google LLC
124124
<plugin>
125125
<groupId>com.google.cloud.tools</groupId>
126126
<artifactId>appengine-maven-plugin</artifactId>
127-
<version>2.0.0-rc6</version>
127+
<version>2.0.0</version>
128128
<configuration>
129129
<version>gaeinfo</version>
130130
</configuration>

appengine-java11/guestbook-cloud-firestore/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<plugin>
8181
<groupId>com.google.cloud.tools</groupId>
8282
<artifactId>appengine-maven-plugin</artifactId>
83-
<version>2.0.0-rc6</version>
83+
<version>2.0.0</version>
8484
<configuration>
8585
<version>guestbook</version>
8686
</configuration>

appengine-java11/http-server/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Single Fat Jar Application on Google App Engine Standard with Java 11
1+
# Standalone HTTP Server on Google App Engine Standard with Java 11
22

33
This sample shows how to deploy an application to Google App Engine using the
44
a fat jar. There is no `entrypoint` field listed in the [`app.yaml`](src/main/appengine/app.yaml),

appengine-java11/http-server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<plugin>
3838
<groupId>com.google.cloud.tools</groupId>
3939
<artifactId>appengine-maven-plugin</artifactId>
40-
<version>2.0.0-rc6</version>
40+
<version>2.0.0</version>
4141
<configuration>
4242
<version>http-server</version>
4343
</configuration>

appengine-java11/kotlin-ktor/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ limitations under the License.
165165
<plugin>
166166
<groupId>com.google.cloud.tools</groupId>
167167
<artifactId>appengine-maven-plugin</artifactId>
168-
<version>2.0.0-rc6</version>
168+
<version>2.0.0</version>
169169
<configuration>
170170
<version>kotlin-ktor</version>
171171
<!-- Ktor generator moved from Maven convention of src/main/* to simply th top level project directory -->

appengine-java11/micronaut-helloworld/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<plugin>
113113
<groupId>com.google.cloud.tools</groupId>
114114
<artifactId>appengine-maven-plugin</artifactId>
115-
<version>2.0.0-rc6</version>
115+
<version>2.0.0</version>
116116
<configuration>
117117
<version>micronaut-helloworld</version>
118118
</configuration>

appengine-java11/oauth2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>com.google.cloud.tools</groupId>
100100
<artifactId>appengine-maven-plugin</artifactId>
101-
<version>2.0.0-rc6</version>
101+
<version>2.0.0</version>
102102
<configuration>
103103
<version>oauth2</version>
104104
</configuration>

appengine-java11/quarkus-helloworld/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
<plugin>
100100
<groupId>com.google.cloud.tools</groupId>
101101
<artifactId>appengine-maven-plugin</artifactId>
102-
<version>2.0.0-rc6</version>
102+
<version>2.0.0</version>
103103
<configuration>
104104
<version>quarkus-helloworld</version>
105105
</configuration>

appengine-java11/spanner/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
<plugin>
9797
<groupId>com.google.cloud.tools</groupId>
9898
<artifactId>appengine-maven-plugin</artifactId>
99-
<version>2.0.0-rc6</version>
99+
<version>2.0.0</version>
100100
<configuration>
101101
<version>spanner</version>
102102
</configuration>

appengine-java11/sparkjava-helloworld/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ limitations under the License.
101101
<plugin>
102102
<groupId>com.google.cloud.tools</groupId>
103103
<artifactId>appengine-maven-plugin</artifactId>
104-
<version>2.0.0-rc6</version>
104+
<version>2.0.0</version>
105105
<configuration>
106106
<artifact>${project.build.directory}/sparkjava-helloworld-1.0-jar-with-dependencies.jar</artifact>
107107
<version>sparkjava-helloworld</version>

appengine-java11/springboot-helloworld/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<plugin>
9393
<groupId>com.google.cloud.tools</groupId>
9494
<artifactId>appengine-maven-plugin</artifactId>
95-
<version>2.0.0-rc6</version>
95+
<version>2.0.0</version>
9696
<configuration>
9797
<version>springboot-helloworld</version>
9898
</configuration>

appengine-java11/tasks-handler/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ limitations under the License.
9696
<plugin>
9797
<groupId>com.google.cloud.tools</groupId>
9898
<artifactId>appengine-maven-plugin</artifactId>
99-
<version>2.0.0-rc6</version>
99+
<version>2.0.0</version>
100100
<configuration>
101101
<version>task-handler</version>
102102
</configuration>

appengine-java11/tasks/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ App Engine task attempts.
2828
To create a queue using the Cloud SDK, use the following gcloud command:
2929

3030
```
31-
gcloud beta tasks queues create-app-engine-queue my-appengine-queue
31+
gcloud beta tasks queues create my-appengine-queue
3232
```
3333

3434
Note: A newly created queue will route to the default App Engine service and

appengine-java11/vertx-helloworld/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Vertx Application on Google App Engine Standard with Java 11
1+
# Vert.x Application on Google App Engine Standard with Java 11
22

33
This sample shows how to deploy a [Vert.x](https://vertx.io/)
44
application to Google App Engine stadndard.

appengine-java11/vertx-helloworld/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ limitations under the License.
9797
<plugin>
9898
<groupId>com.google.cloud.tools</groupId>
9999
<artifactId>appengine-maven-plugin</artifactId>
100-
<version>2.0.0-rc6</version>
100+
<version>2.0.0</version>
101101
<configuration>
102102
<artifact>${project.build.directory}/vertx-hello-j11-1.0-jar-with-dependencies.jar</artifact>
103103
<version>vertx-hello-java11</version>

0 commit comments

Comments
 (0)