maven配置阿里云镜像 settings.xml文件配置

在maven目录下conf文件夹下的settings.xml中添加本地仓库实际地址(可自己配置)

maven默认仓库为

C:\Users\用户名\.m2\repository

 D:\repository

修改maven默认的jdk版本在标签内添加

     
    JDK-1.8       
           
        true       
        1.8       
           
           
        1.8       
        1.8       
        1.8       
           

添加阿里云镜像在标签内添加


    alimaven
    central
    aliyun maven
    http://maven.aliyun.com/nexus/content/repositories/central/

完整的setting.xml文件







  
	D:\repository
  

  

  
  
    
  

  
  
    
  

  
  
    

    
  

  
  
    
	    
        
            alimaven
            central
            aliyun maven
            http://maven.aliyun.com/nexus/content/repositories/central/
        

        
        
            repo1
            central
            Human Readable Name for this Mirror.
            http://repo1.maven.org/maven2/
        

        
        
            repo2
            central
            Human Readable Name for this Mirror.
            http://repo2.maven.org/maven2/
        
  

  
  
    

    
	     
      JDK-1.8       
             
        true       
        1.8       
             
             
        1.8       
        1.8       
        1.8       
             
    
  

  

你可能感兴趣的:(环境配置,maven,阿里云,xml)