diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2020-12-13 18:46:14 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2020-12-13 18:46:14 +0000 |
commit | 55f29ac344667d4e5d3a9bb0d54b28e7396b5381 (patch) | |
tree | cb8ba1c2ad173ffa5e1b0c121a6fa4bee17bc1a0 /build.gradle | |
parent | baa55e55c95ed13c865a832a9d270ee4f6ef68d8 (diff) | |
download | poi-55f29ac344667d4e5d3a9bb0d54b28e7396b5381.tar.gz poi-55f29ac344667d4e5d3a9bb0d54b28e7396b5381.zip |
replace single with double quotes to enable variable substitution
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884388 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index f44ded54e9..68fd7f800f 100644 --- a/build.gradle +++ b/build.gradle @@ -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) } |