maven 获取jar从不同的仓库搜寻排序

maven仓库读取备忘录:
在setting.xml配置了镜像后首先读取镜像的仓库,在没有对应的仓库id,读取setting.xml下标签下的仓库id,如果没有相对应url或者jar, 再读取项目下
pom.xml下标签下的仓库,如果没有相对应的url或者jar,在读取maven默认的中央仓库,如果没有就报错了!

maven 项目下 pom.xml配置仓库



test
http://192.168.0.114:8081/nexus/content/groups/public/

true


false




maven setting.xml下标签配置
 
dev


testrepositoryok
Repository for JDK 1.4 builds
http://192.168.0.114:8081/nexus123/content/groups/public/
default
always



激活
dev


maven setting.xml下标签配置
 

mirrorId
testrepositoryok1
newtec xxh Mirror
http://192.168.0.114:8081/nexus/content/groups/public/

你可能感兴趣的:(Maven)