Exporting a SVN Working Copy with ANT
Once you have installed the SVN task to Eclipse, you can begin to look at the possibilities. For example in a deployment scenario you could use ANT to export the HEAD revision so you have a clean set of files ready for moving by FTP or some other means.
There certainly isnt any VooDoo here, its all very straight forward.
<echo message="exporting to ${buildDir}" />
<property name="buildDir" value="c:/export/${projectName}" />
<svn username="username" password="password">
<export srcUrl="http://localhost/svn/testrepository" destPath="${buildDir}" revision="HEAD" />
</svn>


What am I missing here?