diff options
author | Nick Burch <nick@apache.org> | 2008-01-16 17:12:41 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2008-01-16 17:12:41 +0000 |
commit | 55095d1ccbe113d5a4a9a854ccd143dec893a435 (patch) | |
tree | 1efb3e2a124c47cbae915ad7b107ef3314fc6966 /build.xml | |
parent | 0ccdcda9bd88a2320617321711b1571e86125a49 (diff) | |
download | poi-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.xml | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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" |