Getting Maven dependencies into your IntelliJ IDEA project is a critical step for any Java developer. Whether you are adding a new library or fixing a "red" dependency error, there are several ways to ensure your project stays in sync with your pom.xml . 1. Adding Dependencies via the pom.xml
Force IntelliJ IDEA to reread all maven dependencies - Stack Overflow download maven dependencies in intellij
Press Alt + Insert (Windows/Linux) or ⌘N (macOS) inside the pom.xml and select Dependency . You can search for artifacts directly from Maven Central without leaving the IDE. Getting Maven dependencies into your IntelliJ IDEA project
Open your pom.xml and add the dependency snippet inside the tags. Adding Dependencies via the pom
Sometimes IntelliJ doesn't automatically detect changes or a download gets interrupted. You can force a refresh using these methods:
The most direct way to download dependencies is to declare them in your Maven project object model ( pom.xml ).