centos7 yum下安装maven

1、下载

官网链接:http://mirrors.shu.edu.cn/apache//maven/maven-3/
在线下载:

wget http://mirrors.shu.edu.cn/apache//maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz

2、安装

maven依赖jdk,jdk安装参考:https://blog.csdn.net/vipbupafeng/article/details/80276557
解压:

tar zxvf filename

3、环境变量

配置环境变量:

vi /etc/profile
export MAVEN_HOME=/maven_path
export PATH=$PATH:$MAVEN_HOME/bin

使配置生效:

source /etc/profile

查看版本:

mvn -version

猜你喜欢

转载自blog.csdn.net/xiangbudao8/article/details/84998604