1. 官网下载
官方网址:Maven – Welcome to Apache Maven
windows系统下载相应zip文件即可。
2.添加阿里镜像
下载后将zip文件解压,对conf文件中的settings.xml文件进行修改,添加阿里镜像的地址,之后下载相应东西,速度会更快!
阿里镜像内容:
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
具体步骤如下:在xml文件中黄色的内容注释,添加红色框的阿里的镜像地址。
3. 在IntelliJ IDEA中配置
IDEA 配置 maven 更换阿里云镜像,根据以下步骤,完成即可实现依赖自动导入
在Runner加入以下代码,代表使用内置的配置文件。
-DarchetypeCatalog=internal
之后需要的依赖,就将自动下载!