說明:
版本:IDEA2019.3.3 + apache-maven-3.6.3
一,maven配置
1,下載maven
進入 官網 ,下載二進制文件。這里下載的是 apache-maven-3.6.3-bin.tar.gz

2,解壓到目錄,這里解壓到 D:\Program Files\maven\apache-maven-3.6.3
3,創建 repository 文件夾存儲 maven 下載的包,這里將其和 maven 放在一起,方便管理。
路徑為 D:\Program Files\maven\repository

4,配置 settings.xml 文件,這里只是將 repository 添加入settings.xml
settings.xml 文件在 maven 的 conf 文件下,路徑為 D:\Program Files\maven\apache-maven-3.6.3\conf\settings.xml
打開 settings.xml ,將 <localRepository> 的值該為 repository 文件夾的路徑

二,將maven增加進IDEA
1,打開 Settings

2,配置 maven路徑、settings.xml路徑、倉庫路徑
Settings -> Build,Execution,Deployment -> Maven
這三個路徑分別是 maven路徑、settings.xml路徑、倉庫路徑,根據自己的路徑配置即可。

相關/轉載:
1,IDEA工具創建Maven項目管理並配置settings.xml
