Reputation: 1847
I created an 'App Engine' project (with Maven) using this link https://developers.google.com/appengine/docs/java/tools/maven
Now i am not sure how should i deploy this. Whenever I open my application in eclipse and click on "Deploy to App Engine", I get an error saying "[application] is not an App Engine project". Is there any alternate way to achieve this?
Upvotes: 1
Views: 1715
Reputation: 1822
If you have configured the appengine maven plugin in your pom, and specified your appid and version in your appengine-web.xml, then you can simply run this command at the command prompt:
mvn appengine:update
This will run mvn package, then deploy to the appid in your appengine-web.xml. From memory, the first time it will also open a browser window for you to login to your google account.
Upvotes: 2
Reputation: 2983
To deploy your application you can use a
the update goal allows you to make a deploy.
Upvotes: 0