If you have not customized your Maven settings , look for your dependencies in these platform-specific paths: : C:\Users\YourUsername\.m2\repository macOS : /Users/YourUsername/.m2/repository Linux : /home/YourUsername/.m2/repository
Note: The .m2 folder is hidden by default on many systems. On Linux or macOS, you may need to use ls -a in the terminal or press Cmd+Shift+. in Finder to see it. How to Check or Change the Location in IntelliJ where does intellij download maven dependencies
If your dependencies aren't appearing in the default folder, you may have a custom configuration. You can verify the exact path directly within IntelliJ IDEA: Maven | IntelliJ IDEA Documentation - JetBrains If you have not customized your Maven settings
By default, IntelliJ IDEA downloads Maven dependencies to a local repository located in the .m2/repository directory within your user home folder. While IntelliJ manages the download process through its built-in or custom Maven integration, it adheres to standard Maven file structures to ensure compatibility across different IDEs and command-line tools. Default Storage Locations by Operating System How to Check or Change the Location in