Skip to content

Commit ed9ab17

Browse files
committed
changed dependencies to dynamically choose the latest available version
1 parent 627aa6a commit ed9ab17

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

appengine/endpoints-frameworks-v2/backend/build.gradle

+6-5
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ buildscript {
1818
}
1919

2020
dependencies {
21-
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.0'
22-
classpath 'com.google.cloud.tools:appengine-gradle-plugin:1.3.2'
21+
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:+'
22+
classpath 'com.google.cloud.tools:appengine-gradle-plugin:+'
2323
}
2424
}
2525

@@ -43,9 +43,10 @@ apply plugin: 'com.google.cloud.tools.endpoints-framework-server'
4343
apply plugin: 'com.google.cloud.tools.appengine'
4444

4545
dependencies {
46-
compile 'com.google.endpoints:endpoints-framework:2.0.7'
47-
compile 'com.google.endpoints:endpoints-management-control-appengine:1.0.3'
48-
compile 'com.google.endpoints:endpoints-framework-auth:1.0.3'
46+
// For real projects: use concrete versions here instead of the '+' to make your build consistent
47+
compile 'com.google.endpoints:endpoints-framework:+'
48+
compile 'com.google.endpoints:endpoints-management-control-appengine:+'
49+
compile 'com.google.endpoints:endpoints-framework-auth:+'
4950
}
5051

5152
endpointsServer {

0 commit comments

Comments
 (0)