How to force intellij idea to reread/update all dependencies specified in the pom file ?
The Reimport is not helping at all
|
How to force intellij idea to reread/update all dependencies specified in the pom file ? The Reimport is not helping at all |
|||
|
|
|
Open the "Maven Projects" tab/window and clicking the "Reimport All Maven Projects" in the upper left corner starts to reload all dependencies from their repositories. The status bar informs about the process. What lets you think that this is not working correctly? Maybe any of the dependencies can't be load from the repository? |
|||||||||||||
|
|
There is also one useful setting that tells IntelliJ to check for new versions of dependencies even if the version numbers didn't change. We had a local maven repository and a snapshot project that was updated a few times but the version numbers stood the same. The problem was that IntelliJ/Maven didn't update this project because of the fixed version number. To enable checking for a changed dependency although the version number didn't change go to the "Maven Projects" tab, select "Maven settings" and there activate "Always update snapshots". |
|||
|
|