I find some document Grails 2.1.1, it says we can customize ivy-cache folder.
I have a doubt, can I specify my Maven repo (.m2) path as ivy-cache path?
grails.project.dependency.resolution = {
cacheDir "target/ivy-cache"
}
You can change the ivy cache directory for all projects via settings.groovy
grails.dependency.cache.dir = "${userHome}/.ivy2/cache"
Does this work? Does it support all scenarios? Is it giving any better performance than ivy-cache?