1 下载地址
2 选择下载链接
3 下载其他版本
为了避免之后出现版本不兼容问题,选择低于idea版本的maven
Binaries是可执行版本,已经编译好可以直接使用。
Source是源代码版本,需要自己编译成可执行软件才可使用。
选择windows对应的链接
解压到没有中文名字的目录,不需要安装
4 新建本地Maven仓库maven_repo
核心配置文件:conf/settings.xml
<localRepository>d:\maven_repo</localRepository>
5 配置阿里云提供的镜像仓库和JDK版本
maven下载jar包默认访问境外的中央仓库,而国外网站速度很慢,改为阿里云提供的镜像仓库,访问国内网站,可以让maven下载jar包的时候速度更快。
将原有的镜像注释掉
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
默认版本是1.5,常用1.8,所以要修改
<profiles>
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
6 配置环境变量
确认JAVA_HOME没问题
配置MAVEN_HOME=D:\apache-maven-3.8.4
配置path=%MAVEN_HOME%\bin
7 验证