centos7下安装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 -C /dirname

3、环境变量

编辑:vi /etc/profile

添加内容:

export MAVEN_HOME=/maven_path

export PATH=$PATH:$MAVEN_HOME/bin

使配置生效:source /etc/profile

查看版本:mvn -version

猜你喜欢

转载自blog.csdn.net/vipbupafeng/article/details/80277126