How does Gradle store downloaded jar files on the local file system? Maven stores them in the .m2 directory under USER_HOME, but where does Gradle
.m2
USER_HOME
You can use the gradle argument --project-cache-dir "/Users/whatever/.gradle/" to force the gradle cache directory.
--project-cache-dir "/Users/whatever/.gradle/"
In this way you can be darn sure you know what directory is being used (as well as create different caches for different projects)