美文网首页
上传jar到nexus-maven仓库

上传jar到nexus-maven仓库

作者: 牙齿不帅 | 来源:发表于2020-12-04 08:38 被阅读0次

两个配置:
1.pom.xml,配置上传的仓库路径。注意id标签要统一。

 <distributionManagement>
        <repository>
            <id>test</id>
            <name>test</name>
            <url>http://10.10.94.1:8081/repository/test</url>
        </repository>
  </distributionManagement>

2.maven的setting.xml,配置仓库访问的用户名密码,注意:是要有可上传权限的才可以。

<server>
      <id>test</id>
      <username>xxx</username>
      <password>xxx</password>
    </server>

以上,配置ok后,依次执行maven Lifecycle的clean ->package -> deploy即可。
最后,引用maven仓库jar的pom.xml配置:

<repository>
      <id>test</id>
      <layout>default</layout>
      <url>http://10.10.94.1:8081/repository/test</url>
    </repository>

相关文章

网友评论

      本文标题:上传jar到nexus-maven仓库

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