maven项目配置maven私服,从私服下载jar

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

首先,保证public池里有 自定义respository

maven项目配置maven私服,从私服下载jar_第1张图片

 

然后,保证总的settings.xml的mirrors中, public在最上面.

maven项目配置maven私服,从私服下载jar_第2张图片

两种方式

1.pom文件配置私服地址

maven项目配置maven私服,从私服下载jar_第3张图片

	
	
		
			public
			Public Repositories
			http://192.168.3.17/nexus/content/groups/public/
		
	

	
	
		
			public
			Public Repositories
			http://192.168.3.17/nexus/content/groups/public/
		
	

在构建maven项目时,如果在私服中存在需要的构件,则会直接从私服中下载;

如果私服中没有所需构件,则会先从网络上下载到私服,之后才会下载到本地。

2.全局配置maven私服

修改全局的settings.xml文件

	
		
			public
			
				
					Public Repositories
					http://192.168.3.17/nexus/content/groups/public/
					
						true
					
					
						true
					
				
			
			
				
					Public Repositories
					http://192.168.3.17/nexus/content/groups/public/
					
						true
					
					
						true
					
				
			
		
	


	
		public
	

 

转载于:https://my.oschina.net/u/3970972/blog/3031525

你可能感兴趣的:(maven项目配置maven私服,从私服下载jar)