diff options
Diffstat (limited to 'examples/src/main/groovy/build.gradle')
-rw-r--r-- | examples/src/main/groovy/build.gradle | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/examples/src/main/groovy/build.gradle b/examples/src/main/groovy/build.gradle new file mode 100644 index 0000000000..79bccbcdeb --- /dev/null +++ b/examples/src/main/groovy/build.gradle @@ -0,0 +1,43 @@ +/* ==================================================================== + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +==================================================================== */ + +// Add the POI core and OOXML support dependencies into your gradle build, +// along with all of Groovy so it can run as a standalone script +apply plugin: 'groovy' +repositories { + mavenCentral() +} +dependencies { + compile 'org.codehaus.groovy:groovy-all:2.4.13' + compile 'org.apache.poi:poi:5.0.0' + compile 'org.apache.poi:poi-ooxml:5.0.0' +} + +// Our files are in the current directory +sourceSets { + main { groovy { srcDirs = ['.'] } } +} + +// Run out read demo by default +tasks.withType(JavaExec) { + classpath = sourceSets.main.runtimeClasspath +} +task runScript(type: JavaExec) { + main = "SpreadSheetDemo" + args = ["../../../test-data/spreadsheet/Simple.xls"] +} +defaultTasks 'runScript' |