nexus

Posted jentary

tags:

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

配置镜像  都从nexus中进行下载

在setting中

 

配置工厂

设置工厂后激活

 

 

发布项目

在parent中

<!-- 发布项目的配置 -->
  <distributionManagement>
      <repository>
         <id>user-release</id>
         <name>user release version</name>
         <url>http://localhost:8081/nexus/content/repositories/releases/</url>
         </repository>
      <snapshotRepository>
         <id>user-snapshots</id>
         <name>user snapshots version</name>
         <url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
      </snapshotRepository>
  </distributionManagement>

授权

 

在setting中

<servers>
    <server>
      <id>user-release</id>
      <username>deployment</username>
      <password>deployment123</password>
    </server>
    
    <server>
      <id>user-snapshots</id>
      <username>deployment</username>
      <password>deployment123</password>
    </server>
  </servers>

在nexus中设置权限,角色和用户

 

以上是关于nexus的主要内容,如果未能解决你的问题,请参考以下文章

云原生利器 -- Nexus3

centos7 nexus maven私服搭建

4.Docker Compose 部署 Nexus

maven+nuxes将jar自动上传到私有仓库

Linux 搭建 Maven私服Nexus 3.20.1

Linux 搭建 Maven私服Nexus 3.20.1