Created
November 13, 2010 00:50
-
-
Save dansondergaard/674975 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Run all tests, remove temporary files, zip the project directory | |
avoiding .class files, name the file correctly, and profit. --> | |
<property name="groupName" value="Batman" /> | |
<property name="deliverDest" value="../" /> | |
<target name="deliver" depends="test,clean"> | |
<delete failonerror="false" file="../C${groupName}.zip" /> | |
<zip destfile="${deliverDest}C${groupName}.zip" level="9"> | |
<zipfileset dir="." prefix="C${groupName}/${ant.project.name}"> | |
<exclude name="**/*.class" /> | |
</zipfileset> | |
</zip> | |
</target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment