To create a new project, you'll need to use an App Engine-provided Maven App
Engine artifact called appengine-skeleton-archetype, as described in
Creating the project. The App Engine Maven artifact is
what creates the project layout and files required to deploy and run on App
Engine.
After project creation, you'll need to configure the new project, as described in Configuring the project.
Creating the project
To create the project:
-
Change to a directory where you want to build your project.
-
From the command line invoke Maven as follows:
mvn archetype:generate -
When prompted to Choose a number or apply filter, supply the value
com.google.appengine.archetypes:skeleton-archetypeto display a short list of archetypes matching the filter. -
When prompted to Choose a number or apply filter, supply the number displayed for the
appengine-skeleton-archetypeartifact from the preceding step, for example,1. -
When prompted to Define value for property 'groupId', supply the value
com.google.appengine.demos. -
When prompted to Define value for property 'artifactId', supply the value
guestbook. -
When prompted to Define value for property 'version', accept the default value.
-
When prompted to Define value for property 'package', accept the default value.
-
When prompted to confirm your choices, accept the default value (Y).
-
Wait for the project to finish generating. At this point, the basic project layout with required files is complete. Inside the directory where you created the project, you'll have a subdirectory named
guestbook, which contains apom.xmlfile and two subdirectories:guestbook-earandguestbook-war. We'll describe what to do inside these two subdirectories later.
Now you are ready to configure the project.
Configuring the project
To configure the project:
-
In
guestbook, openpom.xmlin an editor, and change the<appengine.target.version>to the most recent App Engine Java SDK version available. Save your changes and close the file. -
In
guestbook-war, open thepom.xmlfile at that location. -
Under
, locate the line <appengine.app.version>version</appengine.app.version>, and under this, add the line<appengine.target.version><!--version--></appengine.target.version>replacing with the latest App Engine Java SDK version: 1.9.1.
-
Visit the Google Developers Console, and click Create Project.
-
Supply the project name Guestbook and accept the project ID auto-generated for you. Make a note of the project ID, since you'll use it next, then click Create.
-
Back in your terminal window for your Maven project, navigate to the subdirectory
guestbook/guestbook-ear/src/main/application/META-INF/and open the fileappengine-application.xmlin an editor. -
Supply the project ID you just obtained above as the value for
<application>.
You are now ready to add your own application code and UI.
Next
Proceed to the next step, Adding Application Code and UI.