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

Lines changed: 0 additions & 5 deletions
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
Lines changed: 5 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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>

0 commit comments

Comments
 (0)