Google App Engine Java with mvn devserver failed:

2019-04-06 10:45发布

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.

1条回答
叼着烟拽天下
2楼-- · 2019-04-06 11:33

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

查看更多
登录 后发表回答