maven仓库读取顺序

maven的加载顺序和配置

1.加载顺序 项目中的pom.xml是最为优先的,当有父类工程时,父类工程中的peoperties仓库配置节点,会放到最后进行扫描,优先读取本地,对于maven的setting配置文件来说,如果工程pom.xml中的properties节点id与maven的配置文件mirror节点id相同,那么会首先使用maven中配置的仓库,如果找不到那么会使用pom.xml自己的,如果在maven仓库中的mirror节点中配置的是*过滤的话,那最优先读取这个,所以记得将*过滤的仓库放到配置文件的最后。

2.配置相关贴在下面

pom.xml



    
        alimaven
        aliyun maven
        http://maven.aliyun.com/nexus/content/groups/public/
    




maven的setting


 
		
			aliyun-maven
			central
			aliyun maven mirror
			https://maven.aliyun.com/nexus/content/groups/public/
		


你可能感兴趣的:(java,maven,java)