maven 配置私服 连接

两种方法:

1.在单个项目的pom.xml中使用 私服的连接地址,这样只对该项目起作用。

2.在maven的setting.xml配置中添加私服的连接地址。这样对所有项目起作用。

本文章只演示第二种方法:

1.确保nexus私服安装完成并启动。

2.修改本机maven/conf/setting.xml下的配置文件。

完整如下:




//maven的仓库位置
	D:\MAVEN_repository	

	 

	 
//maven操作nexus的权限设置
	
		
			nexus-releases
			admin
			admin123
		
		
			nexus-snapshots
			admin
			admin123
		
		
			3rd-proty
			admin
			admin123
		
	
//配置镜像,让maven只使用私服获取
	
		
			 nexus
			 Nexus Repository
			 http://10.0.27.61:8081/content/groups/public
			 *
	 	
	
//配置仓库车插件,一旦配置了镜像,则 这个配置可忽略
	
		
		 nexus
		 
			 
				 nexus
				 http://10.0.27.61:8081/content/groups/public
				 
					 true
				 
				 
					 true
				 
			 
		 
		 
			 
				 nexus
				 http://10.0.27.61:8081/content/groups/public
				 
					 true
				 
				 
					 true
				 
			 
		 
	 
	
//激活上面的配置
	
		nexus
	



你可能感兴趣的:(maven/Nexus学习总结)