diff options
author | PJ Fanning <fanningpj@apache.org> | 2020-05-28 19:49:23 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2020-05-28 19:49:23 +0000 |
commit | 3e669d3549a231ef07289aa273b3de03b828af2e (patch) | |
tree | 04e1f17c254e3b6cc943ce4728b8ae9cef3a304f /build.xml | |
parent | aa2a43e2a21670672a594c09a5b39d837d553686 (diff) | |
download | poi-3e669d3549a231ef07289aa273b3de03b828af2e.tar.gz poi-3e669d3549a231ef07289aa273b3de03b828af2e.zip |
include commons-compress jar in distribution
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1878246 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -51,6 +51,7 @@ under the License. <property name="repository.pentaho" value="https://nexus.pentaho.org/"/> <property name="main.lib" location="${basedir}/lib/main"/> + <property name="main-tests.lib" location="${basedir}/lib/main-tests"/> <property name="ooxml.lib" location="${basedir}/lib/ooxml"/> <property name="ooxml-tests.lib" location="${basedir}/lib/ooxml-tests"/> <property name="util.lib" location="${basedir}/lib/util"/> @@ -1926,20 +1927,18 @@ under the License. <include name="commons-codec-*.jar"/> <include name="commons-logging-*.jar"/> <include name="commons-collections4-*.jar"/> - <include name="commons-compress*.jar"/> <include name="commons-math3-*.jar"/> <include name="jaxb-api-*.jar"/> <include name="jaxb-impl-*.jar"/> <include name="jaxb-core-*.jar"/> <include name="activation-*.jar"/> - <include name="junit-*.jar"/> <include name="log4j-*.jar"/> <include name="SparseBitSet-*.jar"/> </fileset> <globmapper from="*" to="${zipdir}/lib/*"/> </mappedresources> <mappedresources cache="true"> - <fileset dir="${ooxml.lib}" includes="xmlbeans-*.jar,curvesapi-*.jar"/> + <fileset dir="${ooxml.lib}" includes="xmlbeans-*.jar,curvesapi-*.jar,commons-compress*.jar"/> <regexpmapper from="^(.*\.jar)$$" to="${zipdir}/ooxml-lib/\1"/> </mappedresources> <mappedresources cache="true"> |