add retest-ooxml target that can be used to verify if we have all the necessary classes in poi-ooxml-schemas jar

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1835852 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2018-07-13 18:09:56 +00:00
parent 37cf867cc1
commit 3aeee6987d
1 changed files with 7 additions and 1 deletions

View File

@ -1119,7 +1119,13 @@ under the License.
</copy>
</target>
<target name="retest-ooxml" depends="compile-main,compile-scratchpad,jar">
<target name="retest-ooxml" depends="jar">
<delete dir="${ooxml.reports.test}"/>
<delete dir="${ooxml.output.test}"/>
<delete dir="${ooxml.output.test.dir}"/>
<mkdir dir="${ooxml.reports.test}"/>
<mkdir dir="${ooxml.output.test}"/>
<mkdir dir="${ooxml.output.test.dir}"/>
<!-- compile the sources -->
<javac target="${jdk.version.class}"
source="${jdk.version.source}"