## 安装`maven`
> 点击下载 [maven](https://pan.baidu.com/s/1haraqIs2HpZuKrGjM35CPg),**下面为提取码。**
> ~~~
> v78b
> ~~~
### **1. 下载完成后,选择一个路径进行解压**
### **2. 然后配置path环境变量,如图**
* 系统变量:MAVEN_HOME = D:\java\apache-maven-3.6.3
* 系统变量:path = %MAVEN_HOME%\bin
>![](https://img.kancloud.cn/24/59/245905a03ef94d4cfffe6b5b68291a76_1285x634.png)
>![](https://img.kancloud.cn/ca/22/ca223ee7eedec177047d48686d862a79_632x676.png)
>![](https://img.kancloud.cn/2e/3a/2e3aa0144ec7a8d29bbbe49b69218aec_1159x667.png)
### **3.然后**`win+R` **运行**`cmd` **输入** `mvn -version`,**如图所示则配置成功**
>![](https://img.kancloud.cn/8e/55/8e559695f6e9e0da5217920c672091e3_986x292.png)
### **4.配置**`settings`**文件, 在**`D:\java\apache-maven-3.6.3\conf`**下可以找到**`settings`**文件,打开找到第53行,这里是**`maven`**默认的仓库,改为自己的本地地址。**
>![](https://img.kancloud.cn/50/d0/50d0a66c68ace3f5f6028ae01f1fdcae_1026x639.png)
>![](https://img.kancloud.cn/42/d3/42d341f34202a465ee26b407703a1904_1439x296.png)
```
D:/java/apache-maven-3.6.3/repository
```
### **5.因为国外的服务器下载**`jar包`**很慢所以我们改为阿里云服务器(大约在150行左右),这两个仓库只用选一个(根据大家反馈建议使用第一个,第二个在有的版本可能会出现**`warning`**)**
```
<!-- 阿里云仓库 -->
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
或者
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
```
>![](https://img.kancloud.cn/86/40/86400aa3d35177f615d49299ea051a87_1791x679.png)
### **6.在最后配置**`jdk`**,也要夹在两个**`profiles`**标签之间(我这里使用的为**`jdk8`**)**
```
<!-- java版本 -->
<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>
```
>![](https://img.kancloud.cn/a2/55/a2552558cee02a186500d8600cb0aa24_1886x466.png)
### **7.配置完成,在命令行输入**`mvn help:system`**测试,看到下载链接里面是ailiyun的链接表示配置成功**
```
mvn help:system
```
>![](https://img.kancloud.cn/d0/52/d05278f1b8a9c1b3188bb18a583a4c08_971x287.png)
### **8.在**`IntelliJ IDEA`**中配置**`maven`**,打开**`File-->Settings-->Build Execution Deployment -->Build Tools -->Maven`
>![](https://img.kancloud.cn/2a/35/2a357dcac7d3532b9eafe45d3289b2d2_997x708.png)