Skip to content

Commit

Permalink
fix for GoogleCloudPlatform#747, replaceProjectId wrong directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mpoehler committed Jul 10, 2017
1 parent 50d1969 commit e2e8110
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions appengine-java8/endpoints-v2-backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ endpointsServer {
hostname = "echo-api.endpoints.${projectId}.cloud.goog"
}

sourceCompatibility = 1.7 // App Engine Standard uses Java 7
targetCompatibility = 1.7 // App Engine Standard uses Java 7
sourceCompatibility = 1.8
targetCompatibility = 1.8

// this replaces the ${endpoints.project.id} in appengine-web.xml and web.xml
task replaceProjectId(type: Copy) {
from 'src/main/webapp/WEB-INF/'
include '*.xml'
into 'build/exploded-backend/WEB-INF'
into 'build/exploded-${archivesBaseName}/WEB-INF'
expand(endpoints:[project:[id:projectId]])
filteringCharset = 'UTF-8'
}
Expand Down

0 comments on commit e2e8110

Please sign in to comment.