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
If you want your dependency files to be in some specific folder you can simply use a copy task for it. For Eg.
copy
task copyDepJars(type: Copy) { from configurations.compile into 'C:\\Users\\athakur\\Desktop\\lib' }