一、详细安装
1、下载
点击下载maven压缩包:https://dlcdn.apache.org/maven/maven-3/3.8.6/binaries/apache-maven-3.8.6-bin.tar.gz
2、安装
cd /
mkdir /usr/local/maven
把下载的压缩包放在maven
文件夹里面,并解压
tar -zxvf (按tab键即可!)
3、更改配置文件
删除settings.xml
原文件
rm -rf settings.xml
重新创建个settings.xml
touch settings.xml
编辑 settings.xml
文件
vi settings.xml
把下面的配置内容复制进去
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd">
<localRepository>/m2/repository</localRepository>
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers>
</servers>
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
<profiles>
</profiles>
</settings>
4、环境变量
vi /etc/profile
MAVEN_HOME=/usr/local/maven/apache-maven-3.8.6
PATH=$MAVEN_HOME/bin:$PATH
export MAVEN_HOME PATH
5、重新加载配置文件,并执行
source /etc/profile
执行
mvn -version
大功完成!
二、安装中常遇到的问题
问题分析方法
如果报错,你看下配置jdk了没有
java -version
如果没有安装jdk,可以看下我上篇文章:
点击跳转: 在linux上安装jdk【非常细】