I would like to define svnSetting globally in my build.xml ant script file:
<project name="helloworld" basedir="." default="helloworld">
<svnSetting
javahl="false"
svnkit="true"
username="guest"
password=""
id="svn.settings"
/>
...
</project>
but, of course, the eclipse:
Problem: Could not create task or enter svnSetting Explanation: Name is undefined.
Is it possible to determine svnSetting directly by project, and not by purpose?
source
share