8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc66da6 + 165fdc4 commit 7bbbab6Copy full SHA for 7bbbab6
appengine-java8/endpoints-v2-backend/build.gradle
@@ -54,14 +54,14 @@ endpointsServer {
54
hostname = "echo-api.endpoints.${projectId}.cloud.goog"
55
}
56
57
-sourceCompatibility = 1.7 // App Engine Standard uses Java 7
58
-targetCompatibility = 1.7 // App Engine Standard uses Java 7
+sourceCompatibility = 1.8
+targetCompatibility = 1.8
59
60
// this replaces the ${endpoints.project.id} in appengine-web.xml and web.xml
61
task replaceProjectId(type: Copy) {
62
from 'src/main/webapp/WEB-INF/'
63
include '*.xml'
64
- into 'build/exploded-backend/WEB-INF'
+ into "build/exploded-${archivesBaseName}/WEB-INF"
65
expand(endpoints:[project:[id:projectId]])
66
filteringCharset = 'UTF-8'
67
0 commit comments