maven仓库配置

Posted BerryJamLv

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven仓库配置相关的知识,希望对你有一定的参考价值。

Centos安装maven

安装
centos自带openjdk不用安装

yum install maven

修改阿里镜像源

打开
/usr/share/maven/conf/settings.xml

添加

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

Mac安装maven

brew 将自动安装openjdk

brew install maven

修改仓库

/usr/local/Cellar/maven/3.6.3_1/libexec/conf/settings.xml

添加

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

以上是关于maven仓库配置的主要内容,如果未能解决你的问题,请参考以下文章

如何在myeclipse中配置maven本地仓库

idea怎么配置maven仓库

Maven02_06_maven的仓库以及配置文件修改本都仓库路径整合springmvc

maven镜像配置

Windows 配置Maven的本地仓库和阿里云远程中央仓库

maven配置本地仓库