IDEA maven 项目如何上传到私服仓库

Posted 不忘初心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA maven 项目如何上传到私服仓库相关的知识,希望对你有一定的参考价值。

前言:idea maven 发布版本到私服(快照和正式版)。我有个项目( jar 包源码),其他 maven 项目能直接引入依赖就最好了,所以必须将这个 jar 包源码发布到 maven 私服仓库里去。这里记录一下。

一、发布版本

<version>1.0-SNAPSHOT</version>

在 pom 文件中添加如下代码:

    <!--发布到私服: 设置 version 后,选择 maven 的 deploy 命令-->
    <distributionManagement>
        <repository>
            <id>nexus</id>
            <name>nexus Repository RELEASES</name>
            <url>http://127.0.0.1:8081/nexus/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>nexus</id>
            <name>nexus Repository SNAPSHOTS</name>
            <url>http://127.0.0.1:8081/nexus/content/repositories/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

然后,idea maven 的 选择设置好的 setting.xml 文件

 

最后,在 idea maven 中选择 deploy 命令

 

参考文档:https://www.cnblogs.com/rwxwsblog/p/6029636.html

以上是关于IDEA maven 项目如何上传到私服仓库的主要内容,如果未能解决你的问题,请参考以下文章

《果然新鲜》电商项目(12)- Maven私服仓库使用

maven仓库--私服(Nexus的配置使用)

maven私服仓库nexus,怎样手动上传jar

idea使用maven私服

Maven仓库--Nexus的配置使用

如何上传jar包至Maven私服