8000 replaced single quotes with double quotes to make substitution work. · harsh20k/java-docs-samples@b2fc187 · GitHub
[go: up one dir, main page]

10000
Skip to content

Commit b2fc187

Browse files
committed
replaced single quotes with double quotes to make substitution work.
1 parent e2e8110 commit b2fc187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ targetCompatibility = 1.8
6161
task replaceProjectId(type: Copy) {
6262
from 'src/main/webapp/WEB-INF/'
6363
include '*.xml'
64-
into 'build/exploded-${archivesBaseName}/WEB-INF'
64+
into "build/exploded-${archivesBaseName}/WEB-INF"
6565
expand(endpoints:[project:[id:projectId]])
6666
filteringCharset = 'UTF-8'
6767
}

0 commit comments

Comments
 (0)
0