Commit 284d370b authored by Bill Lynch's avatar Bill Lynch Committed by bill

pack200 each jar as part of the release process (skip startup.jar)

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3255 b35dd754-fafc-0310-a699-88a17e54d16e
parent 64baea17
......@@ -675,11 +675,22 @@
</ant>
<!-- Pack200 processing on JAR files in lib dir -->
<pack200 src="${release.out.dir}/lib/wildfire.jar"
destfile="${release.out.dir}/lib/wildfire.jar.pack"
gzipoutput="false"
modificationtime="latest"
/>
<echo>here</echo>
<for param="jar">
<path>
<fileset dir="${release.out.dir}/lib" includes="*.jar" excludes="startup.jar" />
</path>
<sequential>
<pack200 src="@{jar}"
destfile="@{jar}.pack"
gzipoutput="false"
modificationtime="latest"
/>
<delete file="@{jar}" />
</sequential>
</for>
<!-- Copy dist docs, use filtering -->
<copy todir="${release.out.dir}">
......
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