]> source.dussan.org Git - poi.git/commitdiff
replace single with double quotes to enable variable substitution
authorAndreas Beeker <kiwiwings@apache.org>
Sun, 13 Dec 2020 18:46:14 +0000 (18:46 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Sun, 13 Dec 2020 18:46:14 +0000 (18:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884388 13f79535-47bb-0310-9956-ffa450edef68

build.gradle

index f44ded54e9f1bfb62e5a6bba5fc71fbe3eea1bcf..68fd7f800f6f797f48a67a1efeae0a963729a770 100644 (file)
@@ -302,7 +302,7 @@ project('ooxml') {
 
         compile project(':main')
         compile project(':scratchpad')         // TODO: get rid of this dependency!
-        compile files('../../build/dist/maven/poi-ooxml-full/poi-ooxml-full-${version}.jar')
+        compile files("../../build/dist/maven/poi-ooxml-full/poi-ooxml-full-${version}.jar")
 
         testCompile "junit:junit:${junitVersion}"
         testCompile "org.mockito:mockito-core:${mockitoVersion}"
@@ -338,7 +338,7 @@ project('examples') {
 
         compile "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
 
-        compile files('../../build/dist/maven/poi-ooxml-full/poi-ooxml-full-${version}.jar')
+        compile files("../../build/dist/maven/poi-ooxml-full/poi-ooxml-full-${version}.jar")
         compile "org.apache.commons:commons-compress:${commonsCompressVersion}"
     }
 
@@ -385,7 +385,7 @@ project('integrationtest') {
 
         testCompile "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
 
-        testCompile files('../../build/dist/maven/poi-ooxml-full/poi-ooxml-full-${version}.jar')
+        testCompile files("../../build/dist/maven/poi-ooxml-full/poi-ooxml-full-${version}.jar")
         testCompile files(this.project(':ooxml').sourceSets.test.runtimeClasspath)
     }