maven发布项目到私服(nexus)

1.maven中配置settings.xml文件

server标签配置maven私服账号密码

      
      release  
      admin  
      admin  
    

2.项目中配置pom文件

distributionManagement标签配置maven私服地址

    
        
            release
            https://xxx.com/nexus/content/repositories/release
        
    

私服地址可从maven私服直接复制,查看方式如图所示


image.png

3.项目中执行mvn clean deploy即可上传jar到指定私服

image.png

注意事项

1)项目pom.xml文件中distributionManagement标签的id和maven配置文件setting.xml中server标签的id需一致
2)deploy部署jar到私服的时候只能选择Type为hosted类型的仓库
3)上传releases仓库,版本号version不能以-SNAPSHOT结尾
4)上传snapshot仓库,版本号必须以 -SNAPSHOT 结尾

你可能感兴趣的:(maven发布项目到私服(nexus))