美文网首页
Linux maven安装

Linux maven安装

作者: 神游御风 | 来源:发表于2018-03-13 20:34 被阅读11次

centos版本yum工具

wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo

yum -y install apache-maven

settings.xml修改

whereis maven

vim settings.xml

#本地仓库位置

<localRepository>/xxx/xxx/repository</localRepository>

#mirrors节点下 配置阿里源

<mirror>

<id>alimaven</id>

<mirrorOf>central</mirrorOf>    

<name>aliyun maven</name>  

<url>http://maven.aliyun.com/nexus/content/groups/public/</url>        

</mirror>

相关文章

网友评论

      本文标题:Linux maven安装

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