If you have a Java Project based on Gradle Build and you want to re-download all the dependencies that you have defined in your build.gradle file, then all you need to do is run the below command in command-line/terminal.
Steps:
- Open Command-Line/Terminal in your IDE (Eclipse/VSCode/IntelliJ)
- Move to the location of your project where you have the gradlew file.
- Now run the below gradle command
- Once the build is complete run your project to verify.
./gradlew build --refresh-dependencies
Note: The --refresh-dependencies option tells Gradle to ignore all cached entries for resolved modules and artifacts.
It’s a common misconception to think that using --refresh-dependencies will force download of dependencies. This is not the case: Gradle will only perform what is strictly required to refresh the dynamic dependencies. This may involve downloading new listing or metadata files, or even artifacts, but if nothing changed, the impact is minimal.
Reference: https://docs.gradle.org/current/userguide/dependency_management.html
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!