美文网首页我爱编程
maven推送jar包到本地库、私服(nexus),mvn in

maven推送jar包到本地库、私服(nexus),mvn in

作者: 不敢预言的预言家 | 来源:发表于2018-05-22 11:48 被阅读0次

自开发的jar包上传到nexus私服,供其它项目使用,除了手动上传,更快捷的方式是mvn命令推送。

mvn install

mvn install 安装jar包到本地maven库。

image.png

mvn deploy

mvn deploy 部署jar包到私服,(先部署到本地库,然后部署到远程库)
需要配置如下:
pom.xml

<distributionManagement>
    <repository>
        <id>sdhs-third-party</id>
        <url>http://10.180.29.19:2333/nexus/content/repositories/thirdparty/</url>
    </repository>
</distributionManagement>
<dependencies>
</dependencies>

../apache-maven-3.5.0/conf/settings.xml

<servers>
    <server>
        <id>sdhs-third-party</id>
        <username>admin</username>
        <password>password</password>
    </server>
</servers>

serverid 对应 repositoryid ,在server中配置服务的帐密

image.png

相关文章

网友评论

    本文标题:maven推送jar包到本地库、私服(nexus),mvn in

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