I'm using Ivy Ant and would like to create a policy such that the build checks for the most recent update to a dependency on every build. This is because we're developing in partnership and want to immediately see changes pushed up to the Nexus server.
In Ant I'm doing...
<ivy:cachefileset organisation="com.FOO.storage" conf="default" module="yoda-ui"
revision="0.1.8-SNAPSHOT" setid="ac" inline="true"/>
In ivy-settings.xml I'm trying...
<ivysettings>
<settings defaultResolver="XXX"/>
....
<caches>
<cache name="mycache" basedir="c:/tmp">
<ttl organisation="com.FOO.storage" module="yoda-ui" duration="0ms"/>
</cache>
</caches>
</ivysettings>
However, it still appears to not be checking each time
---------------------------------------------------------------------
| | modules || artifacts |
| conf | number| search|dwnlded|evicted|| number|dwnlded|
---------------------------------------------------------------------
| default | 2 | 0 | 0 | 0 || 2 | 0 |
---------------------------------------------------------------------
I believe this is telling me that its not checking the server each time.
So how do I force Ivy to check the server for updates on every build for this particular module?