diff options
author | PJ Fanning <fanningpj@apache.org> | 2023-03-09 13:31:47 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2023-03-09 13:31:47 +0000 |
commit | 5ad29c2df83a6bbac8e865c6d41538281284a664 (patch) | |
tree | 052e10ef3bcc613619d834dcff2a120f0336c454 /build.xml | |
parent | aa9069c7df4c57088e68d884045f4066fa9ae098 (diff) | |
download | poi-5ad29c2df83a6bbac8e865c6d41538281284a664.tar.gz poi-5ad29c2df83a6bbac8e865c6d41538281284a664.zip |
update build to no longer produce poi-bin distribution files
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1908224 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 47 |
1 files changed, 0 insertions, 47 deletions
@@ -2385,45 +2385,6 @@ under the License. <globmapper from="*" to="${zipdir}/*"/> </mappedresources> - <!-- jars to include in binary assemblies --> - <union id="bin-files" cache="true"> - <mappedresources refid="legal-files"/> - <mappedresources cache="true"> - <fileset dir="${main.lib}"> - <include name="commons-codec-*.jar"/> - <include name="commons-collections4-*.jar"/> - <include name="commons-math3-*.jar"/> - <include name="commons-io-*.jar"/> - <include name="log4j-api-*.jar"/> - <include name="SparseBitSet-*.jar"/> - </fileset> - <globmapper from="*" to="${zipdir}/lib/*"/> - </mappedresources> - <mappedresources cache="true"> - <fileset dir="${ooxml.lib}"/> - <regexpmapper from="^(.*\.jar)$$" to="${zipdir}/ooxml-lib/\1"/> - </mappedresources> - <mappedresources cache="true"> - <fileset dir="${ooxml-provided.lib}"/> - <regexpmapper from="^(.*\.jar)$$" to="${zipdir}/auxiliary/\1"/> - </mappedresources> - <mappedresources cache="true"> - <fileset dir="${ooxml-batik.lib}"/> - <regexpmapper from="^(.*\.jar)$$" to="${zipdir}/auxiliary/\1"/> - </mappedresources> - <mappedresources cache="true"> - <fileset dir="${dist.dir}/maven" includes="**/*.jar" excludes="**/*-javadoc.jar,**/*-sources.jar,**/*-tests.jar"/> - <chainedmapper> - <flattenmapper/> - <globmapper from="*" to="${zipdir}/*"/> - </chainedmapper> - </mappedresources> - <mappedresources cache="true"> - <fileset dir="${build.site}"/> - <globmapper from="*" to="${zipdir}/docs/*"/> - </mappedresources> - </union> - <!-- patterns to exclude from source assemblies --> <union id="src-files" cache="true"> <mappedresources refid="legal-files"/> @@ -2460,14 +2421,6 @@ under the License. </mappedresources> </union> - <zip destfile="${dist.dir}/${jar.name}-bin-${version.id}-${DSTAMP}.zip"> - <union refid="bin-files"/> - </zip> - - <tar destfile="${dist.dir}/${jar.name}-bin-${version.id}-${DSTAMP}.tar.gz" longfile="gnu" compression="gzip"> - <union refid="bin-files"/> - </tar> - <zip destfile="${dist.dir}/${jar.name}-src-${version.id}-${DSTAMP}.zip"> <union refid="src-files"/> </zip> |