Centos7安装Maven3.6.3
作者:
爱烫头的程序员 | 来源:发表于
2021-01-19 01:44 被阅读0次
- 下载源码 http://maven.apache.org/download.cgi
wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz
- 解压迁移
tar -xzvf apache-maven-3.6.3-bin.tar.gz
mv apache-maven-3.6.3 /usr/local/maven
- 添加环境变量
echo -e '\nexport MAVEN_HOME=/usr/local/maven\n' >> /etc/profile
echo -e '\nexport PATH=$PATH:$JAVA_HOME/bin:$MAVEN_HOME/bin\n' >> /etc/profile
- 使配置生效
source /etc/profile
- 查看版本
mvn -version
成功如图
本文标题:Centos7安装Maven3.6.3
本文链接:https://www.haomeiwen.com/subject/pngfzktx.html
网友评论