美文网首页
Centos安装Maven3

Centos安装Maven3

作者: xun2019 | 来源:发表于2017-03-22 14:12 被阅读0次

    1、下载maven3最新版本

    cd /root

    wget http://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz

    tar -zxvf apache-maven-3.3.9-bin.tar.gz

    mv apache-maven-3.3.9 maven3

    ##配置maven

    vi maven3/conf/setting.conf

    ##具体更改如下,此文本编辑器不支持xml文本,只能截图了,修改为阿里云的镜像库

    http://maven.aliyun.com/nexus/content/groups/public/central

    ##

    profiles 下添加本地的nxcus库

    配置nexus servers

    执行vi /etc/profile文件,插入如下内容

    export M3_HOME=/root/maven3

    PATH=$PATH:$JAVA_HOME/bin:$M3_HOME/bin

    保存并退出VI编辑器,执行source /etc/profile命令使改动生效

    source /etc/profile

    相关文章

      网友评论

          本文标题:Centos安装Maven3

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