Creating an Endpoints Backend Project
To create a project for your backend:
- Create a new Maven App Engine project using the
skeleton-archetypeas described in the Using Apache Maven page. However, during that process:- When you are prompted to define the value for property
groupId, supply the valuecom.google.devrel.samples.helloendpoints. - When you are prompted to define the value for property
artifactId, supply the valuehelloendpoints. - When you come to the step instructing you to configure the generated
pom.xmlfile, stop. We'll describe that step in more detail next in this tutorial.
- When you are prompted to define the value for property
Next...
You now have the basic structure of the project completed. You need to configure the project before adding code.
Continue to Configuring the Project for Endpoints.