Home CentOS安装Maven
Post
Cancel

CentOS安装Maven

解压Maven安装包

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

配置maven环境变量

1
vi /etc/profile

添加环境变量

1
2
3
4
# maven environment
export MAVEN_HOME=/var/local/apache-maven-3.5.2
export MAVEN_HOME
export PATH=$PATH:$MAVEN_HOME/bin

刷新环境变量

1
source /etc/profile

验证结果

1
mvn -version
This post is licensed under CC BY 4.0 by the author.