Browse Source

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
tags/REL_4_0_0_FINAL
PJ Fanning 6 years ago
parent
commit
b31f1fd159
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      build.xml

+ 7
- 1
build.xml 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}"

Loading…
Cancel
Save