aboutsummaryrefslogtreecommitdiffstats
path: root/src/contrib
diff options
context:
space:
mode:
authorAndrew C. Oliver <acoliver@apache.org>2002-06-22 16:08:39 +0000
committerAndrew C. Oliver <acoliver@apache.org>2002-06-22 16:08:39 +0000
commit348db2c4235945a607493d83c09257345ce55d1b (patch)
tree3be30e4ed04d7cf7f9375ce908a9e8085bf0fa11 /src/contrib
parenta2169570a4cac8e315b6138d05d33718423f0e4a (diff)
downloadpoi-348db2c4235945a607493d83c09257345ce55d1b.tar.gz
poi-348db2c4235945a607493d83c09257345ce55d1b.zip
forgot the xbuild for suckyviewer....here it is
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352713 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/contrib')
-rw-r--r--src/contrib/targets/suckyviewer/xbuild.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/contrib/targets/suckyviewer/xbuild.xml b/src/contrib/targets/suckyviewer/xbuild.xml
new file mode 100644
index 0000000000..5f7f754dde
--- /dev/null
+++ b/src/contrib/targets/suckyviewer/xbuild.xml
@@ -0,0 +1,37 @@
+<project default="suckyviewer" basedir="../../" name="Sucky Viewer build">
+
+ <property name="build.root" value="build"/>
+
+ <!-- =================================================================== -->
+ <!-- GUI Run Target -->
+ <!-- =================================================================== -->
+ <target name="suckyviewer">
+
+ <property name="contrib.input.selection" value=""/>
+ <centipede-user-input name="contrib.input.selection">Please select a file/url to view </centipede-user-input>
+
+ <java classname="org.apache.poi.hssf.contrib.view.SViewer" fork="true">
+ <arg value="${contrib.input.selection}"/>
+ <classpath>
+ <pathelement path="${xlayout.build.contributions.classes.dir}"/>
+ <pathelement path="${xlayout.build.classes.dir}"/>
+ <path>
+ <fileset dir="${xlayout.library.dir}" casesensitive="yes">
+ <patternset>
+ <include name="*/*.jar"/>
+ <include name="*/*.zip"/>
+ </patternset>
+ </fileset>
+ <fileset dir="${xlayout.source.contributions.library.dir}" casesensitive="yes">
+ <patternset>
+ <include name="*.jar"/>
+ <include name="*.zip"/>
+ </patternset>
+ </fileset>
+ </path>
+ </classpath>
+ </java>
+ </target>
+
+
+</project>