diff options
Diffstat (limited to 'poi-examples/src/main/groovy/build.gradle')
-rw-r--r-- | poi-examples/src/main/groovy/build.gradle | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/poi-examples/src/main/groovy/build.gradle b/poi-examples/src/main/groovy/build.gradle index 653471e501..784d5c1378 100644 --- a/poi-examples/src/main/groovy/build.gradle +++ b/poi-examples/src/main/groovy/build.gradle @@ -21,10 +21,11 @@ apply plugin: 'groovy' repositories { mavenCentral() } + dependencies { - compile 'org.codehaus.groovy:groovy-all:2.4.21' - compile 'org.apache.poi:poi:5.2.1' - compile 'org.apache.poi:poi-ooxml:5.2.1' + implementation 'org.codehaus.groovy:groovy-all:2.4.21' + implementation 'org.apache.poi:poi:5.3.0' + implementation 'org.apache.poi:poi-ooxml:5.3.0' } // Our files are in the current directory @@ -38,6 +39,6 @@ tasks.withType(JavaExec) { } task runScript(type: JavaExec) { mainClass = "SpreadSheetDemo" - args = ["../../../test-data/spreadsheet/Simple.xls"] + args = ["../../../../test-data/spreadsheet/Simple.xls"] } defaultTasks 'runScript' |