Description
ivy.cache.dir.${settingsRef} is not set properly after a call to resolve.
e.g.
ivysettings.xml
...
<caches defaultCacheDir="someDirectory"/>
...
build.xml
<ivy:settings id="test" file="ivysettings.xml"/>
<ivy:resolve settingsRef="test"/>
<echo message="Cache Dir : ${ivy.cache.dir.test}"
ivy.cache.dir.test is set to the default ${user.home}/.ivy2/cache instead of "someDirectory" that is the value of the defaultCacheDir attribute set in the ivysettings.xml.