I am not able to use something similar to resultproperty="checkout.res" while checkout from SVNANT, which can used in "exec".
Below is the snippet of my ant build file.
<target name="SVNCheckout">
<svn username="${svn.username}" password="${svn.password}" failonerror="true" resultproperty="checkout.res" >
<checkout url="${svn.base.url}/myproject" revision="HEAD" destPath="../../../../stubswds" />
</svn>
</target>
Getting error as below :
Buildfile: /home/Workspace/Checkout/src/main/resources/buildandcheckout.xml
SVNCheckout:
BUILD FAILED
/home/Workspace/Checkout/src/main/resources/buildandcheckout.xml:113: svn doesn't support the "resultproperty" attribute
Total time: 1 second