Maven发布项目到Nexus私服

项目pom配置

在项目pom.xml中文件中的仓库配置,Nexus私服如何搭建在这里不介绍了可自行百度。


    
         releases
         Nexus Release Repository
         http://私服地址:3456/repository/maven-releases/
    
    
         snapshots
         Nexus Snapshot Repository
         http://私服地址:3456/repository/maven-snapshots/
    

maven配置

在maven的settings.xml文件中添加服务器配置,仓库id、用户名和密码,id需要与上面pom.xml中的仓库id一致,两个密码都是nexus登录密码。


  releases
  admin
  ***


  snapshots
  admin
  ***

上传

再执行mvn deploy,也可以直接使用idea执行。

Maven发布项目到Nexus私服_第1张图片

Maven发布项目到Nexus私服_第2张图片

你可能感兴趣的:(好记性不如记事本,maven,intellij-idea,java)