十八、在pom.xml中使用distributionManagement将项目打包上传到nexus私服

     在pom.xml中使用distributionManagement将项目打包上传到nexus私服


1、pom.xml文件添加distributionManagement节点


  <distributionManagement>
    
    <repository>
        
        <id>yangid>
        
        <name>Release repositoryname>
        <url>http://192.168.1.105:8081/repository/yang/url>
    repository>
    
  distributionManagement>


< repository >节点下的< id >对应setting.xml文件中的server的id

    
    <server>
      <id>yangid>
       <username>adminusername>
       <password>admin123password>
     server>

上传正式版本,pom.xml文件version中不能有SNAPSHOT,快照版本才有

  <groupId>com.yanggroupId>
  <artifactId>shade-pluginartifactId>
  <version>0.0.1version>
  

2、打包执行,上传

在pom.xml文件中右击,run As – Maven build … 打开如下的框。
看清楚,有三个点的。

十八、在pom.xml中使用distributionManagement将项目打包上传到nexus私服_第1张图片

十八、在pom.xml中使用distributionManagement将项目打包上传到nexus私服_第2张图片

你可能感兴趣的:(Maven,从无到有搭建后台架构及运维架构)