码迷,mamicode.com
首页 > 其他好文 > 详细

Maven中setting修改为阿里的数据源

时间:2020-07-27 17:57:48      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:技术   conf   nexus   修改   pom   inf   mamicode   退出   read   

修改maven中setting配置

找到tomcat中conf下的setting.xml,找到<mirrors>下

? <mirror>
? ? ? <id>mirrorId</id>
? ? ? <mirrorOf>repositoryId</mirrorOf>
? ? ? <name>Human Readable Name for this Mirror.</name>
? ? ? <url>http://my.repository.com/repo/path</url>;
? ? </mirror>

? <mirror>
?? ??? ??? ?<id>nexus-aliyun</id>
?? ??? ??? ?<mirrorOf>*</mirrorOf>
?? ??? ??? ?<name>Nexus aliyun</name>
?? ??? ??? ?<url>http://maven.aliyun.com/nexus/content/groups/public</url>;
?? ?</mirror>
如下:
技术图片
然后,添加pom中配置
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>;
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
保存退出,maven重新加载即可。

Maven中setting修改为阿里的数据源

标签:技术   conf   nexus   修改   pom   inf   mamicode   退出   read   

原文地址:https://blog.51cto.com/7567511/2513690

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!