Skip to content

Commit

Permalink
Fix broken EP Framework guice samples (#913)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankyn authored Nov 8, 2017
1 parent 42766d3 commit 2ff682d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
7 changes: 4 additions & 3 deletions appengine-java8/endpoints-v2-guice/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ buildscript {

dependencies {
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.2'
classpath 'com.google.cloud.tools:appengine-gradle-plugin:1.3.3'
classpath 'com.google.cloud.tools:appengine-gradle-plugin:1.3.4'
}
}

Expand All @@ -43,10 +43,11 @@ apply plugin: 'com.google.cloud.tools.endpoints-framework-server'
apply plugin: 'com.google.cloud.tools.appengine'

dependencies {
compile 'com.google.endpoints:endpoints-framework:2.0.8'
compile 'com.google.endpoints:endpoints-framework:2.0.9'
// [START guice_dependency]
compile 'com.google.endpoints:endpoints-framework-guice:'
compile 'com.google.endpoints:endpoints-framework-guice:2.0.9'
// [END guice_dependency]

compile 'com.google.endpoints:endpoints-management-control-appengine:1.0.5'
compile 'com.google.endpoints:endpoints-framework-auth:1.0.5'
}
Expand Down
9 changes: 4 additions & 5 deletions appengine/endpoints-frameworks-v2/guice-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ buildscript {
}

dependencies {
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:+'
classpath 'com.google.cloud.tools:appengine-gradle-plugin:+'
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.2'
classpath 'com.google.cloud.tools:appengine-gradle-plugin:1.3.4'
}
}

Expand All @@ -43,9 +43,8 @@ apply plugin: 'com.google.cloud.tools.endpoints-framework-server'
apply plugin: 'com.google.cloud.tools.appengine'

dependencies {
// For real projects: use concrete versions here instead of the '+' to make your build consistent
compile 'com.google.endpoints:endpoints-framework:2.0.8'
compile 'com.google.endpoints:endpoints-framework-guice:2.0.8'
compile 'com.google.endpoints:endpoints-framework:2.0.9'
compile 'com.google.endpoints:endpoints-framework-guice:2.0.9'
compile 'com.google.endpoints:endpoints-management-control-appengine:1.0.5'
compile 'com.google.endpoints:endpoints-framework-auth:1.0.5'
}
Expand Down

0 comments on commit 2ff682d

Please sign in to comment.