mirror of https://github.com/grpc/grpc-java.git
buildscripts: add explicit dependency on appengine SDK (#4269)
This fixes the following in GAE: java.lang.ClassNotFoundException: com.google.appengine.api.ThreadManager
This commit is contained in:
parent
db64c36af2
commit
6b753bdc35
|
|
@ -42,7 +42,7 @@ apply plugin: 'com.google.cloud.tools.appengine' // App Engine tasks
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
providedCompile group: 'javax.servlet', name: 'servlet-api', version:'2.5'
|
providedCompile group: 'javax.servlet', name: 'servlet-api', version:'2.5'
|
||||||
compile 'com.google.appengine:appengine:1.9.59'
|
compile 'com.google.appengine:appengine-api-1.0-sdk:1.9.59'
|
||||||
// Deps needed by all gRPC apps in GAE
|
// Deps needed by all gRPC apps in GAE
|
||||||
compile libraries.google_api_protos
|
compile libraries.google_api_protos
|
||||||
compile project(":grpc-okhttp")
|
compile project(":grpc-okhttp")
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ apply plugin: 'com.google.cloud.tools.appengine' // App Engine tasks
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
providedCompile group: 'javax.servlet', name: 'servlet-api', version:'2.5'
|
providedCompile group: 'javax.servlet', name: 'servlet-api', version:'2.5'
|
||||||
compile 'com.google.appengine:appengine:1.9.59'
|
compile 'com.google.appengine:appengine-api-1.0-sdk:1.9.59'
|
||||||
// Deps needed by all gRPC apps in GAE
|
// Deps needed by all gRPC apps in GAE
|
||||||
compile libraries.google_api_protos
|
compile libraries.google_api_protos
|
||||||
compile project(":grpc-okhttp")
|
compile project(":grpc-okhttp")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue