Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine Java with mvn devserver failed: missing "guestbook/target/guestbook-1.0-SNAPSHOT"

I'm trying to go through the simple tutorial on Google App Engine with Java, but when I try to run the mvn appengine:devserver command, I get this weird missing directory error:

[INFO] guestbook ......................................... FAILURE [  0.228 s]
[INFO] guestbook-war ..................................... SKIPPED
[INFO] guestbook-ear ..................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.446 s
[INFO] Finished at: 2014-05-06T12:03:51-08:00
[INFO] Final Memory: 9M/176M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.google.appengine:appengine-maven-plugin:1.9.4:devserver (default-cli) on project guestbook: The application directory does not exist : /Users/davidt/GoogleAppEngineProjects/guestbook/target/guestbook-1.0-SNAPSHOT -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

What is going on? When was I supposed to have created that snapshot?

Note: I am not sure if this matters, but I've been deleting and recreating the project multiple times under the same folder.

like image 200
David T. Avatar asked May 06 '14 19:05

David T.


1 Answers

You have to run mvn appengine:devserver in the guestbook-ear folder. I was running it on the top level.

like image 93
David T. Avatar answered Oct 18 '22 16:10

David T.