> GrapeIvy does not detect new snapshot versions well so you end up having to > clear the cache after each publish for GrapeIvy to find the new one
Is there a JIRA ticket for this issue? Ivy should be seeing "abc-1.0.0SNAPSHOT.jar" as a snapshot not release and so it checks the repository for new artifacts. However, if you are pushing a new "abc-1.0.0.jar" to your repo, that is not automatically checked if cached. You can add "changing=true" attribute to your dependency or there are other config options to make this happen. Gradle behaves this same way unless you use "--refresh-dependencies" command-line argument.
