ChatGPT解决这个技术问题 Extra ChatGPT

Gradle store on local file system

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 store them? I checked the .gradle folder there, but saw only compiled scripts.


J
Jolta

On Mac, Linux and Windows i.e. on all 3 of the major platforms, Gradle stores dependencies at:

~/.gradle/caches/modules-2/files-2.1

cd %userprofile%\.gradle\caches\modules-2\files-2.1 — a short command to locate to this directory on Windows.
S
Sergey

Gradle caches artifacts in USER_HOME/.gradle folder. The compiled scripts are usually in the .gradle folder in your project folder.

If you can't find the cache, maybe it's because you have not cached any artifacts yet. You can always see where Gradle has cached artifacts with a simple script:

apply plugin: 'java'

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.google.guava:guava:12.0'
}

task showMeCache doLast() {
    configurations.compileClasspath.each { println it }
}

Now if you run gradle showMeCache it should download the dependencies into the cache and print the full path.


On my Mac for Gradle 2.4, it (currently) is in ~/.gradle/caches/modules-2/files-2.1.
the left shift operator << is being deprecated on Gradle 3.2 mrhaki.blogspot.com/2016/11/…
The left shift operator is deprecated but still works (as of Gradle 4.10). It's going to continue to work until Gradle 5
How to declare compileClasspath ?
I
Ivan Kochurkin

In Windows 10 PC, it is saved at:

C:\Users\%USERNAME%\.gradle\caches\modules-2\files-2.1\

Can I force change that path to some other location?
@MohammadFaisal yes, see stackoverflow.com/a/28927173/192373
n
nix

Gradle's local repository folder is:

$USER_HOME/.gradle/caches/modules-2/files-2.1

Defined dependencies will be loaded from remote repositories into gradle's local repository folder. For each loaded file, gradle will be create a new folder named with md5 value of the original file (pom,jar,..). Full path for the dependency file is made up from :

groupid + artifactid + version + FILE_MD5_VALUE + FILE_NAME

If our defined dependency is:

compile 'org.springframework:spring-jdbc:4.3.4.RELEASE'

Then the library will be loaded into :

/$USER_HOME/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/4.3.4.RELEASE/42175d194cf6aa7c716c0887f30255e5c0a5262c/spring-jdbc-4.3.4.RELEASE.jar


MD5 is deprecated now it uses SHA1 value
Afterwards FILE_HASH_VALUE was been more generic .Thanks for your comment alphaguy.
d
davidxxx

In fact the cache location depends on the GRADLE_USER_HOME environment variable value. By default, it is $USER_HOME/.gradle on Unix-OS based and %userprofile%.\gradle on Windows.
But if you set this variable, the cache directory would be located from this path.

And whatever the case, you should dig into caches\modules-2\files-2.1 to find the dependencies.


A
Aniket Thakur

If you want your dependency files to be in some specific folder you can simply use a copy task for it. For Eg.

task copyDepJars(type: Copy) {
  from configurations.compile
  into 'C:\\Users\\athakur\\Desktop\\lib'
}

Your task prints NO-SOURCE in console, and don't copy dependencies!!
m
mekbib.awoke

I am on windows,

You should be able find the dependencies inside

$USER_HOME.gradle\caches\artifacts-24\filestore


On my Mac for Gradle 2.4, it (currently) is in ~/.gradle/caches/modules-2/files-2.1.
I use windows 10 and it is saved under: C:\Users[user]\.gradle\caches\modules-2\files-2.1
R
RoBeaToZ

Many answers are correct! I want to add that you can easily find your download location with

gradle --info build

like described in https://stackoverflow.com/a/54000767/4471199.

New downloaded artifacts will be shown in stdout:

Downloading https://plugins.gradle.org/m2/org/springframework/boot/spring-boot-parent/2.1.7.RELEASE/spring-boot-parent-2.1.7.RELEASE.pom to /tmp/gradle_download551283009937119777bin

In this case, I used the docker image gradle:5.6.2-jdk12. As you can see, the docker container uses /tmp as download location.


G
Graeme

You can use the gradle argument --project-cache-dir "/Users/whatever/.gradle/" to force the gradle cache directory.

In this way you can be darn sure you know what directory is being used (as well as create different caches for different projects)


A
Alper Akture

https://i.stack.imgur.com/IDdps.jpg


j
joensson

In case it is an Android gradle project - you can find the android libraries below your $ANDROID_HOME/extras/android/m2repository folder


c
chetan mekha

In android studio do the following steps to check the gradle downloaded jar file.

Set project structure view to "Project" At bottom External library section available, expand it. Here you can see downloaded jar files.


n
nanosoft

On my windows machine with "Buildship 2.0.2" plugin installed in eclipse, dependencies are stored :

$USER_HOME.gradle\caches\modules-2\files-2.1


e
entpnerd

It took me a while to realize this, hence the additional answer. Hopefully it can save folks time. Note that if you are running sudo gradle the dependencies may not be in your home directory, even if sudo echo $HOME returns /Users/<my-non-root-user>/. On my Mac, Gradle was caching the dependencies in /private/var/root/.gradle/caches/.


e
entpnerd

For my case, I was using an Ivy repository, and my Gradle dependencies were stored in ~/.ivy2/.