gae-interop-testing: Pin appengine library version

While using + is convenient, it prevents builds from being
deterministic which makes it hard/impossible to reproduce a historic
build or execution results.
This commit is contained in:
Eric Anderson 2017-11-10 14:42:46 -08:00
parent 5a87a6fff6
commit 30fb844790
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,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:+' compile 'com.google.appengine:appengine: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")

View File

@ -39,13 +39,13 @@ 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:+' compile 'com.google.appengine:appengine: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")
compile project(":grpc-protobuf") compile project(":grpc-protobuf")
compile project(":grpc-stub") compile project(":grpc-stub")
compile (project(":grpc-interop-testing")) compile project(":grpc-interop-testing")
compile libraries.netty_tcnative compile libraries.netty_tcnative
} }