Maven私库和本地Maven项目配置

1、项目私库服务器配置

settting 文件里面的配置
  
    
        nexusProfiles
        
            
              nexus
              nexus Repository
               http://192.168.45.25:8081/nexus/content/groups/public/
              
                true 
              
              
                true 
              
            
      
    

  
    
   
      nexusProfiles
   


2、maven的默认中央仓库配置


apache-maven-3.2.3\lib\ maven-model-builder-3.2.3.jar  包里面的 pom-4.0.0.xml文件里,如图


3、maven中央工厂只能有私有仓库访问,需要配置镜像 mirror
 
    
      nexusMirror
      nexus,central  
      Human Readable Name for this Mirror.
       http://192.168.45.25:8081/nexus/content/groups/public/
    
   
    配置镜像之后,可以不使用  
    
   
      nexusProfiles
   

你可能感兴趣的:(Maven私库和本地Maven项目配置)