Reputation: 21
I am new to Google Drive API and getting following error while setting a sample Guestbook application in Eclipse. I have read almost all the questions that are posted here about this error but I still the error. Hence I am writing this question.
The error I am seeing is -
Failed to execute goal com.google.appengine:appengine-maven-plugin:1.9.18:update (default-cli) on project guestbook: Execution default-cli of goal com.google.appengine:appengine-maven-plugin:1.9.18:update failed. NoSuchElementException ->
I am seeing this error when I am performing step 2: Run the app in the development server on your local machine by invoking this command from /guestbook: mvn appengine:devserver
[Building and testing the app - https://cloud.google.com/appengine/docs/java/gettingstarted/ui_and_code]
Any help is greatly appreciated.
Upvotes: 0
Views: 571
Reputation: 21
Here is how I fixed this issue -
By implementing all the steps mentioned above, I got able to deploy Guestbook application and was able to run it successfully.
Upvotes: 1
Reputation: 26251
I'm afraid the 1.9.18
version is not yet available in Maven repositories. Try to downgrade to 1.9.17
and check if it solves the problem.
Upvotes: 0