]> source.dussan.org Git - poi.git/commitdiff
Add a missing bit to the compile-ooxml ant task
authorNick Burch <nick@apache.org>
Wed, 16 Jan 2008 17:12:52 +0000 (17:12 +0000)
committerNick Burch <nick@apache.org>
Wed, 16 Jan 2008 17:12:52 +0000 (17:12 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@612520 13f79535-47bb-0310-9956-ffa450edef68

build.xml

index b790d5689b6ce6fde0268e2afd8d350ba508016e..fa6011901c0f4e58c52816e6827fb56c4bbb8756 100644 (file)
--- 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"