Maven-settings配置

一、MAVEN官网

Maven – Download Apache Maven

二、下载教程

参考文章

Maven教程(1)--maven的下载、安装与配置 - platycoden - 博客园


 一下任意一个settings设置 使用maven是没有问题的 但是在后面开发的过程的过程中 依然存在可能 jar找不到 即使是中央仓库也不行 也会有jar的缺少情况 

一、手动下载jar复制到本地仓库 (个别情况)

二、多放置几个仓库  (推荐)

像这样呢

Maven-settings配置_第1张图片


2.1 MAVEN配置一

来源百度 (目前在用)


 

 


    
    
    E:\Program Files (x86)\maven\apache-maven-3.6.3\repository
    
 
    
 
    
    
        
    
 
    
    
        
    
 
    
    
        
 
        
    
 
    
    
        
 
        
            alimaven-central
            central
            aliyun maven
            http://maven.aliyun.com/nexus/content/repositories/central/
        
        
            jboss-public-repository-group
            central
            JBoss Public Repository Group
            http://repository.jboss.org/nexus/content/groups/public
        
 
        
 
    
 
    
    
        
        
            jdk18
            
                1.8
                true
            
            
                1.8
                1.8
                1.8
            
        
 
        
    
 
    

2.2、MAVEN配置二

来源谢欣(自己大学期间一直再用 出来后 就换了)







  
E:\Program Files (x86)\maven\apache-maven-3.5.2\m2\.m2\repository

  

  

  
  
    
  

  
  
    
  

  
  
    

    
	
		 releases
		 admin
		 admin123
	 
	
		 snapshots
		 admin
		 admin123
	 
  


  
  
 
 

   


 
  nexus-aliyun
  *
  Nexus aliyun
  http://maven.aliyun.com/nexus/content/groups/public
  

 
  

  
  
    
    

    
	
	    
    downloadSources    
        
        true    
        true               
        

  
  
      
  downloadSources    
    

  

2.3、MAVEN配置三

来源尚硅谷(大厂亲测)







  
  D:\development\maven\repository

  

  

  
  
    
  

  
  
    
  

  
  
    

    
  

  
  
    

	  
        nexus-aliyun  
        central    
        Nexus aliyun  
        http://maven.aliyun.com/nexus/content/groups/public  
     
  

  
  
    

    
	    
        jdk-1.8    
            
            true    
            1.8    
            
            
            1.8    
            1.8    
            1.8    
            
     
  

  

2.4、MAVEN原始备份

原始备份







  

  

  

  
  
    
  

  
  
    
  

  
  
    

    
  

  
  
    
    
      maven-default-http-blocker
      external:http:*
      Pseudo repository to mirror external repositories initially using HTTP.
      http://0.0.0.0/
      true
    
  

  
  
    

    
  

  

你可能感兴趣的:(配置类,maven,xml)