0%

maven安装

1. 下载地址:http://maven.apache.org/download.cgi

2. 解压:

1
tar -zxvf apache-maven-3.6.3-bin.tar.gz

3. 重命名:

1
mv apache-maven-3.6.3 maven3.6.3

4. 添加环境变量:

1
2
3
4
vi /etc/profile

export M2_HOME=/usr/local/maven/maven3.6.3
export PATH=$PATH:$JAVA_HOME/bin:$M2_HOME/bin

5. 让修改生效:

1
source /etc/profile

6. 验证:

1
mvn -v

7. 修改配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
vi /usr/local/maven/maven3.6.3/conf/settings.xml
<!-- 本地仓库 -->
<localRepository>/usr/local/mvn_repository</localRepository>

<!--使用阿里云,速度比官方快很多行指定中央仓库的镜像。-->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>


<!--更改Maven的默认jdk版本 -->
<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>