美文网首页
Centos7安装Maven3.6.3

Centos7安装Maven3.6.3

作者: 爱烫头的程序员 | 来源:发表于2021-01-19 01:44 被阅读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
    
    成功如图

    相关文章

      网友评论

          本文标题:Centos7安装Maven3.6.3

          本文链接:https://www.haomeiwen.com/subject/pngfzktx.html