maven上传nexus私服(snapshots版本和releases版本)

  • 编辑settings.xml文件

maven上传nexus私服(snapshots版本和releases版本)_第1张图片

  
        
              releases
              username
              password
        
		
              snapshots
              username
              password
        
  
  • 编辑maven工程的pom.xml,添加如下内容
  
    
      snapshots
      Nexus SNAPSHOTS Repository
      http://url.com.cn/nexus/content/repositories/Project-Snapshots/
    
    
      releases
      Nexus RELEASE Repository
      http://url.com.cn/nexus/content/repositories/Project
    
  

 

你可能感兴趣的:(Java,maven)