aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorNick Burch <nick@apache.org>2008-01-16 17:12:41 +0000
committerNick Burch <nick@apache.org>2008-01-16 17:12:41 +0000
commit55095d1ccbe113d5a4a9a854ccd143dec893a435 (patch)
tree1efb3e2a124c47cbae915ad7b107ef3314fc6966 /build.xml
parent0ccdcda9bd88a2320617321711b1571e86125a49 (diff)
downloadpoi-55095d1ccbe113d5a4a9a854ccd143dec893a435.tar.gz
poi-55095d1ccbe113d5a4a9a854ccd143dec893a435.zip
Add a missing bit to the compile-ooxml ant task
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@612519 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 21ee606c15..2a490c08dd 100644
--- a/build.xml
+++ b/build.xml
@@ -474,6 +474,16 @@ under the License.
destdir="${ooxml.output.dir}" debug="on" srcdir="${ooxml.src}">
<classpath refid="ooxml.classpath"/>
</javac>
+
+ <javac target="1.5" source="1.5"
+ failonerror="true" destdir="${ooxml.output.test.dir}" debug="on"
+ fork="yes" srcdir="${ooxml.src.test}">
+ <classpath>
+ <path refid="ooxml.classpath"/>
+ <pathelement location="${ooxml.output.dir}"/>
+ <pathelement location="${junit.jar1.dir}"/>
+ </classpath>
+ </javac>
</target>
<target name="test" depends="test-main,test-scratchpad,test-contrib"