Skip to content

Latest commit

 

History

History
62 lines (36 loc) · 1.94 KB

nexus使用.md

File metadata and controls

62 lines (36 loc) · 1.94 KB

1、nexus使用

  1. 自己创建仓库,选择 maven2(proxy)

image-20220705134043201

2.配置阿里云地址

http://maven.aliyun.com/nexus/content/groups/public/

image-20220705112825591

3.在maven-publict添加你刚才创建的仓库

image-20220705112937453

image-20220705113105262

4.Maven 配置使用私服,有两种方式
  • setting.xml:该文件配置的是全局模式

  • pom.xml:该文件的配置的是项目独享模式

    注意:若 pom.xmlsetting.xml 同时配置了,以 pom.xml 为准。

5.新建好仓库的名字

image-20220705134120825

6.pom文件的配置
<!--打包到自己的依赖-->
<distributionManagement>
    <repository>
        <id>nexus</id
        <name>hjt-maven-release</name>
       <url>http://1.15.180.153:8081/repository/hjt-maven-release/</url>
    </repository>
</distributionManagement>

setting中的配置

配置nexus的账号密码

  • 注意 中的nexus和pom文件中的nexus要对于上

image-20220705145150315

image-20220705145421839

这里可以配置hjt-maven-release仓库,也可以配置maven-public。因为刚才我在maven-public中配置了我新建的仓库 hjt-maven-release仓库。

7.部署成功

image-20220705145825404

image-20220705145839326