zoukankan      html  css  js  c++  java
  • dubbo-2.8.4编译发布到本地Nexus库

    首先修改本地Maven的settings.xml文件,注意<Servers>标签中的内容:

    <settings xmlns="http://maven.apache.org/POM/4.0.0"  
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
              xsi:schemaLocation="http://maven.apache.org/POM/4.0.0  
                                   http://maven.apache.org/xsd/settings-1.0.0.xsd">  
     <mirrors>
        <mirror>
          <id>CN</id>
          <name>OSChina Central</name>                                                                                                                       
          <url>http://maven.oschina.net/content/groups/public/</url>
          <mirrorOf>central</mirrorOf>
        </mirror>
      </mirrors>
      
      <localRepository>D:Javam2
    epository</localRepository>
     <servers>
         <server>
           <id>releases</id>
           <username>deployment</username>
           <password>deployment</password>
         </server>
     </servers>
    </settings>

    dubbo-master顶层配置文件:

    image

    <distributionManagement>
       <repository>
        <id>releases</id>
        <name>dubbo-2.8.4 releases</name>
        <url>http://172.28.3.60:8081/nexus/content/repositories/releases/</url>
       </repository>
      </distributionManagement>

    在Nexus中设置deployment账户的用户名和密码:

    image

    在repository中设置,repository可以:Allow Redeploy:

    image

    在dubbo-master的顶层目录执行:mvn deploy –Dmaven.test.skip=true:

    image

     

    执行完毕后,可以在本地的库中看到dubbo被成功的发布到了公司内部的mavne服务器:

    image

     

    使用者只需要在自己的pom文件中,添加如下配置即可:

    <repositories>
      <!--
       <repository> <id>thirdparty</id> <url>http://172.28.3.60:8081/nexus/content/repositories/thirdparty</url> 
       </repository> 
       -->
       <repository>
       <id>releases</id>
       <url>http://172.28.3.60:8081/nexus/content/repositories/releases</url>
       </repository>
     </repositories>
  • 相关阅读:
    Jemter---基础概念
    Jmeter---线程操作
    性能接口面试题
    Linux---网络命令
    测试所用链接地址
    Linux---压缩解压命令
    Linux----用户管理命令
    性能面试题
    Linux---帮助命令
    Linux--文件搜索命令
  • 原文地址:https://www.cnblogs.com/justinzhang/p/4969278.html
Copyright © 2011-2022 走看看