javaweb项目使用国内阿里maven私服(2种方法)

方法1,在maven的config下setings.xml文件中加入以下代码
 
    
      mirrorId
      repositoryId
      Human Readable Name for this Mirror.
      http://my.repository.com/repo/path
    
  
方法2,在pom.xml加入以下代码
    
    
        
            nexus-aliyun
            Nexus aliyun
            http://maven.aliyun.com/nexus/content/groups/public
            
                true
            
            
                false
            
        
    
    
        
            nexus-aliyun
            Nexus aliyun
            http://maven.aliyun.com/nexus/content/groups/public
            
                true
            
            
                false
            
        
    

你可能感兴趣的:(javaweb项目使用国内阿里maven私服(2种方法))