Author: kiwiwings
Date: Sun Dec 13 18:46:14 2020
New Revision: 1884388
URL: http://svn.apache.org/viewvc?rev=1884388&view=rev
Log:
replace single with double quotes to enable variable substitution
Modified:
poi/trunk/build.gradle
Modified: poi/trunk/build.gradle
URL:
http://svn.apache.org/viewvc/poi/trunk/build.gradle?rev=1884388&r1=1884387&r2=1884388&view=diff
==============================================================================
--- poi/trunk/build.gradle (original)
+++ poi/trunk/build.gradle Sun Dec 13 18:46:14 2020
@@ -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)
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]