I have an Ant script which checks out a project from CVS and then builds and deploys it. THe requirement is such that the script should be a part of the code in the "scripts" folder and every time a checkout is done the file will be over written. When the build is done without doing the CVS checkout everything works fine. My code snippet is
<target name="deploy.main" depends="checkProperty" if="propertyExist">
<echo message="${release.number}"/>
<sequential>
<parallel>
<antcall target="tag.branch"/>
<antcall target="checkout.main"/>
</parallel>
<antcall target="stopJboss" />
<sleep seconds="10" />
<antcall target="replaceTag"/>
<antcall target="deploy" />
<antcall target="moveConfigFiles" />
<antcall target="promote"/>
<antcall target="stopRemoteJboss"/>
<parallel>
<antcall target="startJboss" />
<antcall target="startRemoteJboss"/>
</parallel>
</sequential>
</target>
This file is always overwritten by the new file during a checkout, does ant read the whole file at once at the start and keep it in memory? Or does it try to find things in the new file?