美文网首页
远程私服发布jar包

远程私服发布jar包

作者: 老猫头 | 来源:发表于2016-11-16 09:20 被阅读26次
    1. 配置项目POM.xml

             <distributionManagement>           
                        <repository>               
                                <id>nexus-releases</id>                
                                <url>http://127.0.0.1:8081/nexus/content/groups/public</url>    
                         </repository>            
                        <snapshotRepository>               
                               <id>nexus-snapshots</id>               
                              <url>http://127.0.0.1:8081/nexus/content/repositories/snapshots</url>
                        </snapshotRepository> 
              </distributionManagement>
      
    2. 配置nexus的用户名密码

               <servers> 
                     <server>
                          <id>nexus-releases</id>
                          <username>admin</username>
                          <password>Admin@123</password>
                     </server>              
                     <server>                  
                        <id>nexus-snapshots</id>
                        <username>admin</username>
                        <password>Admin@123</password>
                     </server>           
                </servers>
      
    3. 指向maven发布命令

    maven deploy或执行IDEA模块maven的deploy指令

    相关文章

      网友评论

          本文标题:远程私服发布jar包

          本文链接:https://www.haomeiwen.com/subject/fdalpttx.html