美文网首页
dubbox-2.8.4发布到nexus私服

dubbox-2.8.4发布到nexus私服

作者: 苏打柠檬水 | 来源:发表于2017-09-12 11:42 被阅读49次

    我司的分布式构架是基于dubbox搭建的,刚入职的时候交接的时候,maven编译缺包,同事发来一个大的压缩包让我放到maven本地库,当时就有点诧异但也接受了,每每来新人,我都是如法炮制。
    今天换成win10环境,感觉不能忍了。
    我司有自己的nexus私服,大家都把我司nexus私服作为主库,将缺少的包发不到nexus私服就行了。

    在checkout出来的dubbox目录下,修改pom.xml文件,添加如下代码:

    <!-- 配置远程发布到私服,mvn deploy -->
        <distributionManagement>
            <repository>
                <id>thirdparty</id>
                <url>http://10.10.10.133:8081/nexus/content/repositories/thirdparty/</url>
            </repository>
        </distributionManagement>
    

    dubbox目录下执行

    mvn deploy -Dmaven.test.skip=true
    

    Could not transfer artifact com.oracle:ojdbc14:jar:10.2.0.3.0 from/to nexus

    使用mvn deploy:deploy-file命令来上传jar包到nexus私服

    mvn deploy:deploy-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.3.0 -Dpackaging=jar -Dfile=E:\ojdbc14.jar -Durl=http://10.10.10.133:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty
    

    相关文章

      网友评论

          本文标题:dubbox-2.8.4发布到nexus私服

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