We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50d1969 commit e2e8110Copy full SHA for e2e8110
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