CentOS7安裝Maven
壹府怯、安裝
Maven下載地址:https://maven.apache.org/download.cgi
下載Binary tar.gz archive
# 1.1 下載
wget https://mirrors.bfsu.edu.cn/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz
# 1.2 解壓
tar -zxvf apache-maven-3.6.3-bin.tar.gz
# 修改文件夾名或移動(dòng)到自定義的安裝目錄苗桂,這里作為演示不改變名稱和目錄
# 1.3.1 配置環(huán)境變量(1.3.2為Windows)
vim /etc/profile.d/maven.sh
# 粘貼內(nèi)容(按需要修改)
MAVEN_HOME=/home/maven/apache-maven-3.6.3
export PATH=${MAVEN_HOME}/bin:${PATH}
# 1.3.2
1. 新建系統(tǒng)環(huán)境變量"M2_HOME"并填寫(xiě)maven解壓目錄(例如:"D:\Program Files\free\apache-maven-3.6.3")
2. 編輯系統(tǒng)環(huán)境變量的"Path"在最前方加入"%M2_HOME%\bin;"
3. cmd輸入"mvn -version"測(cè)試是否安裝成功
# 1.4 生效環(huán)境變量
# 方法1
source /etc/profile
# 方法2
. /etc/profile
# 1.5 查看是否安裝成功
mvn -v
貳玫镐、配置settings.xml
復(fù)制以下內(nèi)容到你maven安裝目錄下的conf/settings.xml文件,建議先備份原始settings.xml文件箩溃。
記得要修改下載jar包到本地倉(cāng)庫(kù)的路徑
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>D:\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>