Skip to content

Commit

Permalink
Merge pull request #748 from mpoehler/master
Browse files Browse the repository at this point in the history
fix for #747, replaceProjectId wrong directory
  • Loading branch information
frankyn authored Jul 10, 2017
2 parents 50d1969 + b2fc187 commit 165fdc4
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 165fdc4

Please sign in to comment.