美文网首页
nexus搭建maven私服

nexus搭建maven私服

作者: WebGiser | 来源:发表于2024-02-05 16:33 被阅读0次

参考:https://blog.csdn.net/sinat_35210614/article/details/130406060

下载、安装、启动nexus

nexus创建用户和角色

maven配置

修改maven的setting.xml配置,要和刚才创建的用户名,密码一致,仓库id不要去修改

    <server>
      <id>nexus-releases</id>
      <username>user</username>
      <password>123456</password>
    </server>
    <server>
      <id>nexus-snapshots</id>
      <username>user</username>
      <password>123456</password>
    </server>

改造父工程的pom.xml

在要使用内部jar包项目的maven父工程的pom.xml文件中加入

    <distributionManagement>
        <repository>
            <id>nexus-releases</id>
            <url>http://ip:port/repository/maven-releases</url>
        </repository>
        <snapshotRepository>
            <id>nexus-snapshots</id>
            <url>http://ip:port/repository/maven-snapshots</url>
        </snapshotRepository>
    </distributionManagement>

上传私有jar包

找到你想打成依赖的项目,执行以下命令

mvn clean
mvn deploy

相关文章

网友评论

      本文标题:nexus搭建maven私服

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