For me, it seems there were 2 problems:
1) The "basedir" needed to be passed from Hudson to my ANT build script. To do this, I had to ensure that all project folder and file references in my project were prefixed with the "basedir" variable, and then I configured Hudson to set this variable in it's ANT launch configuration:
Add the following in Hudson: Job Configurations | Build | Invoke ANT | Properties:
basedir=${WORKSPACE}
2) I needed to change some of my ANT "copy" tasks to explicitly overwrite files if already present:
This seemed to work:
<copy todir="${target.war.dir}/WEB-INF/classes">
...
</copy>
became:
<copy todir="${target.war.dir}/WEB-INF/classes" failonerror="true" overwrite="true" force="true">
...
</copy>