Centos7安装Maven3.6.3

2021-01-19  本文已影响0人  爱烫头的程序员
  1. 下载源码 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
  1. 解压迁移
tar -xzvf apache-maven-3.6.3-bin.tar.gz
mv apache-maven-3.6.3 /usr/local/maven
  1. 添加环境变量
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
  1. 使配置生效
source /etc/profile
  1. 查看版本
mvn -version
成功如图
上一篇 下一篇

猜你喜欢

热点阅读