S4beR
S4beR

Reputation: 1847

upload a project to Google App Engine created using Maven

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

Answers (2)

Nick
Nick

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

Skizzo
Skizzo

Reputation: 2983

To deploy your application you can use a

appengine-maven-plugin

the update goal allows you to make a deploy.

Upvotes: 0

Related Questions