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)