]> source.dussan.org Git - poi.git/commitdiff
Add script to run ant locally with Java 1.6/Ant 1.8.x
authorDominik Stadler <centic@apache.org>
Sun, 11 Dec 2016 20:56:28 +0000 (20:56 +0000)
committerDominik Stadler <centic@apache.org>
Sun, 11 Dec 2016 20:56:28 +0000 (20:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773610 13f79535-47bb-0310-9956-ffa450edef68

run.sh [new file with mode: 0755]
src/documentation [new symlink]

diff --git a/run.sh b/run.sh
new file mode 100755 (executable)
index 0000000..c153181
--- /dev/null
+++ b/run.sh
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+export JAVA_HOME=/usr/lib/jvm/java-6-sun
+
+# use this JVM for creating javadocs:
+#export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
+
+export PATH=$JAVA_HOME/bin:$PATH
+
+export FORREST_HOME=/opt/apache/forrest/apache-forrest-0.5.1-bin
+
+export ANT_OPTS="-Xmx1024m -XX:MaxPermSize=256m"
+
+#ls $JAVA_HOME
+java -version
+
+# compile-ooxml-lite test-all testcoveragereport
+#/opt/apache/apache-ant/apache-ant-1.7.1/bin/
+ant \
+       -Dcoverage.enabled=true \
+       -Dorg.apache.poi.util.POILogger=org.apache.poi.util.NullLogger \
+       -Dhalt.on.test.failure=false \
+       $*
+/opt/apache/apache-ant/apache-ant-1.7.1/bin/ant -Dcoverage.enabled=true $*
diff --git a/src/documentation b/src/documentation
new file mode 120000 (symlink)
index 0000000..778ab48
--- /dev/null
@@ -0,0 +1 @@
+/opt/apache/poi/site/src/documentation
\ No newline at end of file