美文网首页
centos下安装maven

centos下安装maven

作者: 广西年轻人 | 来源:发表于2018-03-28 22:01 被阅读15次

    和windows下大同小异

    1.下载,解压

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

    2.配置环境变量

    vim /etc/profile

    MAVEN_HOME=/opt/maven/apache-maven-3.5.2
    export MAVEN_HOME
    export PATH=${PATH}:${MAVEN_HOME}/bin
    

    source /etc/profile 使环境变量生效
    3.修改maven的setting文件,修改中央仓库为阿里云。

    <mirror>
                    <id>nexus-aliyun</id>
                    <mirrorOf>central</mirrorOf>
                    <name>Nexus aliyun</name>
                    <url>http://maven.aliyun.com/nexus/content/groups/public</url>
             </mirror>
    
    

    4.测试

    mvn -v
    
    捕获.PNG

    相关文章

      网友评论

          本文标题:centos下安装maven

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