1.下載maven的tar.gz安裝包html
2.移到centos7中並解壓apache
tar -xzvf maven.tar.gz
3.開始配置maven環境變量,經過命令vim
vim /etc/profile
4.配置環境變量centos
#maven
export MAVEN_HOME=/var/local/apache-maven-3.5.4 export PATH=${MAVEN_HOME}/bin:$PATH
而後保存退出maven
5.查看版本阿里雲
mvn -version
6.替換maven源,阿里雲的源:url
打開maven配置文件,好比:centos7
vi /data/maven3/conf/settings.xmlxml
找到<mirrors></mirrors>標籤對htm
添加後的效果爲:
<mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors>