GoogleCloudPlatform / gradle-appengine-plugin

Gradle plugin that provides tasks for uploading, running and managing Google App Engine projects
Apache License 2.0
236 stars 60 forks source link

appengine downloadSdk = true is needed in addition to dependencies #258

Open nlaney opened 8 years ago

nlaney commented 8 years ago

Found this on StackExchange looking for solution to "The App Engine SDK root was not set."

appengine {
  downloadSdk = true 
}

I followed the README, and it seems the above is needed in addition to,

dependencies {
  appengineSdk 'com.google.appengine:appengine-java-sdk:1.9.42'
}

Please update the README, or close this issue if I somehow did something wrong, thanks!