Commit 5d33d595 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Pack the admin console JAR files.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@5888 b35dd754-fafc-0310-a699-88a17e54d16e
parent 21dda577
......@@ -781,6 +781,23 @@
</sequential>
</for>
<!-- Pack200 processing on JAR files in admin plugin lib dir -->
<for param="jar">
<path>
<fileset dir="${release.out.dir}/plugins/admin/webapp/WEB-INF/lib" includes="*.jar"
excludes="startup.jar,jdic.jar,mail.jar,activation.jar,bouncycastle.jar"/>
</path>
<sequential>
<delete file="@{jar}.pack"/>
<pack200 src="@{jar}"
destfile="@{jar}.pack"
gzipoutput="false"
/>
<delete file="@{jar}"/>
</sequential>
</for>
<!-- Copy dist docs, use filtering -->
<copy todir="${release.out.dir}">
<fileset dir="${docs.dir}/dist" includes="*.*" excludes="LICENSE.html"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment