File tree 18 files changed +21
-21
lines changed
appengine-simple-jetty-main
guestbook-cloud-firestore
18 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,6 @@ standard Java 11 environment.
10
10
11
11
## Prerequisites
12
12
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
-
18
13
### Download Maven
19
14
20
15
These samples use the [ Apache Maven] [ maven ] build system. Before getting
Original file line number Diff line number Diff line change
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 ) .
Original file line number Diff line number Diff line change 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
2
2
3
3
This sample shows how to deploy an application to Google App Engine, using the
4
4
` entrypoint ` element in the [ app.yaml] ( app.yaml ) to start your application. The
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ Copyright 2019 Google LLC
124
124
<plugin >
125
125
<groupId >com.google.cloud.tools</groupId >
126
126
<artifactId >appengine-maven-plugin</artifactId >
127
- <version >2.0.0-rc6 </version >
127
+ <version >2.0.0</version >
128
128
<configuration >
129
129
<version >gaeinfo</version >
130
130
</configuration >
Original file line number Diff line number Diff line change 80
80
<plugin >
81
81
<groupId >com.google.cloud.tools</groupId >
82
82
<artifactId >appengine-maven-plugin</artifactId >
83
- <version >2.0.0-rc6 </version >
83
+ <version >2.0.0</version >
84
84
<configuration >
85
85
<version >guestbook</version >
86
86
</configuration >
Original file line number Diff line number Diff line change 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
2
2
3
3
This sample shows how to deploy an application to Google App Engine using the
4
4
a fat jar. There is no ` entrypoint ` field listed in the [ ` app.yaml ` ] ( src/main/appengine/app.yaml ) ,
Original file line number Diff line number Diff line change 37
37
<plugin >
38
38
<groupId >com.google.cloud.tools</groupId >
39
39
<artifactId >appengine-maven-plugin</artifactId >
40
- <version >2.0.0-rc6 </version >
40
+ <version >2.0.0</version >
41
41
<configuration >
42
42
<version >http-server</version >
43
43
</configuration >
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ limitations under the License.
165
165
<plugin >
166
166
<groupId >com.google.cloud.tools</groupId >
167
167
<artifactId >appengine-maven-plugin</artifactId >
168
- <version >2.0.0-rc6 </version >
168
+ <version >2.0.0</version >
169
169
<configuration >
170
170
<version >kotlin-ktor</version >
171
171
<!-- Ktor generator moved from Maven convention of src/main/* to simply th top level project directory -->
Original file line number Diff line number Diff line change 112
112
<plugin >
113
113
<groupId >com.google.cloud.tools</groupId >
114
114
<artifactId >appengine-maven-plugin</artifactId >
115
- <version >2.0.0-rc6 </version >
115
+ <version >2.0.0</version >
116
116
<configuration >
117
117
<version >micronaut-helloworld</version >
118
118
</configuration >
Original file line number Diff line number Diff line change 98
98
<plugin >
99
99
<groupId >com.google.cloud.tools</groupId >
100
100
<artifactId >appengine-maven-plugin</artifactId >
101
- <version >2.0.0-rc6 </version >
101
+ <version >2.0.0</version >
102
102
<configuration >
103
103
<version >oauth2</version >
104
104
</configuration >
Original file line number Diff line number Diff line change 99
99
<plugin >
100
100
<groupId >com.google.cloud.tools</groupId >
101
101
<artifactId >appengine-maven-plugin</artifactId >
102
- <version >2.0.0-rc6 </version >
102
+ <version >2.0.0</version >
103
103
<configuration >
104
104
<version >quarkus-helloworld</version >
105
105
</configuration >
Original file line number Diff line number Diff line change 96
96
<plugin >
97
97
<groupId >com.google.cloud.tools</groupId >
98
98
<artifactId >appengine-maven-plugin</artifactId >
99
- <version >2.0.0-rc6 </version >
99
+ <version >2.0.0</version >
100
100
<configuration >
101
101
<version >spanner</version >
102
102
</configuration >
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ limitations under the License.
101
101
<plugin >
102
102
<groupId >com.google.cloud.tools</groupId >
103
103
<artifactId >appengine-maven-plugin</artifactId >
104
- <version >2.0.0-rc6 </version >
104
+ <version >2.0.0</version >
105
105
<configuration >
106
106
<artifact >${project.build.directory} /sparkjava-helloworld-1.0-jar-with-dependencies.jar</artifact >
107
107
<version >sparkjava-helloworld</version >
Original file line number Diff line number Diff line change 92
92
<plugin >
93
93
<groupId >com.google.cloud.tools</groupId >
94
94
<artifactId >appengine-maven-plugin</artifactId >
95
- <version >2.0.0-rc6 </version >
95
+ <version >2.0.0</version >
96
96
<configuration >
97
97
<version >springboot-helloworld</version >
98
98
</configuration >
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ limitations under the License.
96
96
<plugin >
97
97
<groupId >com.google.cloud.tools</groupId >
98
98
<artifactId >appengine-maven-plugin</artifactId >
99
- <version >2.0.0-rc6 </version >
99
+ <version >2.0.0</version >
100
100
<configuration >
101
101
<version >task-handler</version >
102
102
</configuration >
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ App Engine task attempts.
28
28
To create a queue using the Cloud SDK, use the following gcloud command:
29
29
30
30
```
31
- gcloud beta tasks queues create-app-engine-queue my-appengine-queue
31
+ gcloud beta tasks queues create my-appengine-queue
32
32
```
33
33
34
34
Note: A newly created queue will route to the default App Engine service and
Original file line number Diff line number Diff line change 1
- # Vertx Application on Google App Engine Standard with Java 11
1
+ # Vert.x Application on Google App Engine Standard with Java 11
2
2
3
3
This sample shows how to deploy a [ Vert.x] ( https://vertx.io/ )
4
4
application to Google App Engine stadndard.
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ limitations under the License.
97
97
<plugin >
98
98
<groupId >com.google.cloud.tools</groupId >
99
99
<artifactId >appengine-maven-plugin</artifactId >
100
- <version >2.0.0-rc6 </version >
100
+ <version >2.0.0</version >
101
101
<configuration >
102
102
<artifact >${project.build.directory} /vertx-hello-j11-1.0-jar-with-dependencies.jar</artifact >
103
103
<version >vertx-hello-java11</version >
You can’t perform that action at this time.
0 commit comments