<!-- define ANT hook to InstallAnywhere, will be executed even if you don't trigger an ia target -->
<!-- this goes near the begining before your targets -->
<taskdef name="buildinstaller" classname="com.zerog.ia.integration.ant.InstallAnywhereAntTask"/>
...
<!-- define installanywhere target -->
<target name="ia" depends="build">
<buildinstaller
<!-- define installanywhere home -->
IAlocation="e:\program files\installanywhere 6 standard"
<!-- define the ia deployment descriptor file -->
IAProjectFile="w:\deploy\killerapp.iap_xml"
/>
</target>