Skip to content

Instantly share code, notes, and snippets.

View profer's full-sized avatar

Wolfgang Profer profer

  • Mauerbach, Austria
View GitHub Profile
@wuservices
wuservices / build-snippet.xml
Created August 20, 2012 18:12
Ant post-processing target to remove signature files from jar
<target name="remove-signatures">
<exec executable="zip">
<arg value="-d"/>
<arg value="${artifact.output.path}/output.jar"/>
<arg value="*.RSA"/>
<arg value="*.SF"/>
<arg value="*.DSA"/>
</exec>
</target>