Maven上传jar包到私服

Posted 流易

tags:

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

1、认证,在M2_HOME/conf/settings.xml配置用户名密码

<server>
    <id>releases</id>
    <username>admin</username>
    <password>admin123</password>
</server>
<server>
    <id>snapshots</id>
    <username>admin</username>
    <password>admin123</password>
</server>

2、在将要上传项目的pom.xml中配置jar包上传路径url

<distributionManagement>
    <repository>
        <id>releases</id>
        <url>http://127.0.0.1:8081/repository/maven-releases/</url>
    </repository>
    <snapshotRepository>
        <id>releases</id>
        <url>http://127.0.0.1:8081/repository/maven-snapshots/</url>
    </snapshotRepository>
</distributionManagement>

3、执行命令发布项目到私服(上传jar包到私服上)

  mvn deploy

 

以上是关于Maven上传jar包到私服的主要内容,如果未能解决你的问题,请参考以下文章

批量上传 Jar 包到 Maven 私服的工具

导入第三方Jar包到Nexus私服

如何上传jar包至Maven私服

maven私服nexus

(转)上传jar包到nexus私服

添加jar包到本地Maven仓库