diff options
author | Dominik Stadler <centic@apache.org> | 2023-08-01 08:24:54 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2023-08-01 08:24:54 +0000 |
commit | 8e2b749cf607dc1a4f92c305abec3056835e5e72 (patch) | |
tree | 0ab857843a459173e2bfd330d4e588d2b7d75980 /poi-examples | |
parent | ce1e4695e76b9d5a4aa9649f6c191c9876a800d4 (diff) | |
download | poi-8e2b749cf607dc1a4f92c305abec3056835e5e72.tar.gz poi-8e2b749cf607dc1a4f92c305abec3056835e5e72.zip |
Update Apache Ant to 1.10.13 and use newer Gradle syntax
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1911383 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-examples')
-rw-r--r-- | poi-examples/src/main/groovy/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poi-examples/src/main/groovy/build.gradle b/poi-examples/src/main/groovy/build.gradle index 95121081d8..cc8e6f738f 100644 --- a/poi-examples/src/main/groovy/build.gradle +++ b/poi-examples/src/main/groovy/build.gradle @@ -37,7 +37,7 @@ tasks.withType(JavaExec) { classpath = sourceSets.main.runtimeClasspath } task runScript(type: JavaExec) { - main = "SpreadSheetDemo" + mainClass = "SpreadSheetDemo" args = ["../../../test-data/spreadsheet/Simple.xls"] } defaultTasks 'runScript' |