Mayank Pandya
Mayank Pandya

Reputation: 1623

SDK Location is not a directory

I am using eclipse Kepler Google app engine 1.8.8 Maven 3.1

I wanted to start working on my first Google App Engine (GAE) project in Eclipse. As always, I wanted to stick to maven with its great dependency management and WAR deployment. Unfortunately,

I got this error message. enter image description here

So my question why eclipse cannot find SDK? I dont want to add external sdk.

Upvotes: 1

Views: 469

Answers (1)

Romin
Romin

Reputation: 8816

I would suggest to try out the following:

  1. Go to your Eclipse Preferences -> Google -> App Engine. Make sure you are using the App Engine plugin SDK.

  2. Go to Java Project -> Properties. In the Order and Export, make sure that the Eclipse app Engine SDK is higher than the one that your Maven repository is pointing too.

Check this out : How to run maven project on google app engine

Upvotes: 3

Related Questions