|
|
NotesOnAntFrom $1Table of contents
Notes on Ant
Basic skeleton (build.xml):<project name="projName" default="def-target" basedir="/base/path">
<target name="targName" depends="a,b" if="prop-set" unless="prop-unset">
<property name="propName" value="src" />
</target>
</project>
Commands:
Custom Tasks:
Tags:
none |