maven配置文件settings.xml中的一些概念总结 #39
ycyin
announced in
Announcements
Replies: 1 comment
-
<!-- 阿里云仓库 -->
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
<!--重定向到我们自己的私库-->
<mirror>
<id>nexus.yyc.cn</id>
<!--profile中的repository.id-->
<mirrorOf>central</mirrorOf>
<url>https://nexus.yyc.cn/repository/maven-public/</url>
</mirror> mirrorOf相同这种情况下,只有第一个mirror生效? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
maven配置文件settings.xml中的一些概念总结
在settings.xml文件中有如下几个常用的配置标签: 在标签中配置仓库访问账号和密码。 在标签中配置对profiles中配置的仓库镜像。 在标签中配置多仓库使用,配置多个profile及其对应的repositories。 在<ac...
https://ycyin.eu.org/posts/Maven/maven-settings-summary.html
Beta Was this translation helpful? Give feedback.
All reactions