Advertisement
jdalbey

Ant zip target for NetBeans

Apr 11th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <!--
  2. ==========================
  3. ZIP FILE SECTION
  4. ==========================
  5. -->
  6. <property name="basedir" value="."/>
  7. <target name="zip" depends="compile"
  8. description="Make zip file of src and test folders">
  9. <zip destfile="Submit.zip" basedir="${basedir}/src" includes="**"></zip>
  10. <zip destfile="Submit.zip" basedir="${basedir}/test" includes="**" update="true"></zip>
  11. </target>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement