aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
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"