Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 628 Bytes

File metadata and controls

21 lines (15 loc) · 628 Bytes

Single Fat Jar Application on Google App Engine Standard with Java 11

This sample shows how to deploy an application to Google App Engine using the a fat jar. There is no entrypoint field listed in the app.yaml, as the application is a single fat jar with the correct MainClass field in the MANIFEST.

Setup

See Prerequisites.

Deploy to App Engine Standard

mvn clean package appengine:deploy -Dapp.deploy.projectId=<your-project-id>

To view your app, use command:

gcloud app browse

Or navigate to http://.appspot.com URL.