diff options
author | Dominik Stadler <centic@apache.org> | 2015-10-14 19:27:14 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2015-10-14 19:27:14 +0000 |
commit | 76d99f9583954355c4c36c2ed61225f2539190c6 (patch) | |
tree | c9051db170f8d0a59d41fdf7a299e207ebb4e2bf /build.xml | |
parent | a2a688eb0f40153a5d14b2ffd91d1d69d36af601 (diff) | |
download | poi-76d99f9583954355c4c36c2ed61225f2539190c6.tar.gz poi-76d99f9583954355c4c36c2ed61225f2539190c6.zip |
Delete outdated versions of ooxml-schemas jars before building
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1708681 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -431,6 +431,7 @@ under the License. we often had hard-to-find build/CI-problems because of these! --> <mkdir dir="${main.lib}"/> <mkdir dir="${compile.lib}"/> + <mkdir dir="${ooxml.lib}"/> <delete verbose="true"> <fileset dir="${main.lib}"> <include name="ant-1.8*"/> @@ -453,6 +454,10 @@ under the License. <include name="junit-3*"/> <include name="junit-4.11*"/> </fileset> + <fileset dir="${ooxml.lib}"> + <include name="ooxml-schemas-1.1-sources.jar"/> + <include name="ooxml-schemas-1.1.jar"/> + </fileset> </delete> <condition property="jars.present"> |