maven配置aliyun仓库

2020-05-21  本文已影响0人  jinelei
  1. 项目级别:
    在对应pom.xml中添加repository节点。
<repository>
    <id>central</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    <layout>default</layout>
    <releases>
        <enabled>true</enabled>
    </releases>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
</repository>
  1. 全局配置:
    在对应settings.xml中添加mirror节点。
<mirror>
    <id>nexus-aliyun</id>
    <mirrorOf>central</mirrorOf>
    <name>Nexus aliyun</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
上一篇下一篇

猜你喜欢

热点阅读