博客
关于我
maven私服的配置使用
阅读量:434 次
发布时间:2019-03-06

本文共 1742 字,大约阅读时间需要 5 分钟。

搭建私服Nexus

1. 下载Nexus

下载地址:(文中已去除具体下载链接)

可以选择下载zip和tar包,分别对应Windows和Linux系统。

2. 安装Nexus

下载完成后,解压zip包,进入bin目录,运行命令:

nexus.bat install

3. 卸载Nexus

执行命令:

nexus.bat uninstall

4. 启动Nexus

  • 打开命令提示符,进入Nexus安装目录,执行命令:
  • nexus.bat start
    1. 在服务中找到Nexus,右键选择“启动”。
    2. 5. Nexus配置文件详解

      Nexus的配置文件位于conf/nexus.properties,主要配置项包括:

      • application-port=8081:Nexus的访问端口,默认不需要修改。
      • application-host=0.0.0.0:Nexus的主机监听设置,默认保留。
      • nexus-webapp=${bundleBasedir}/nexus:Nexus的工程目录。
      • nexus-webapp-context-path=/nexus:Nexus的Web访问路径。
      • nexus-work=${bundleBasedir}/../sonatype-work/nexus:Nexus的仓库目录。
      • runtime=${bundleBasedir}/nexus/WEB-INF:Nexus运行程序目录。

      6. 访问私服

    3. 打开浏览器,访问http://localhost:8081/nexus
    4. 点击右上角的“登录”,输入默认用户名admin,密码admin123
    5. 7. 上传jar包到私服

      在Maven的setting.xml中配置私服仓库:

      releases
      admin
      admin123
      snapshots
      admin
      admin123

      在项目的pom.xml中添加仓库配置:

      releases
      http://localhost:8081/nexus/content/repositories/releases/
      snapshots
      http://localhost:8081/nexus/content/repositories/snapshots/

      运行mvn deploy命令即可将项目发布到私服仓库,依据项目版本是否以“snapshot”结尾,决定发布至快照仓库或发布仓库。

      8. 从私服下载jar包

      在Maven的setting.xml中添加私服仓库配置:

      dev
      nexus
      http://localhost:8081/nexus/content/groups/public/
      true
      true
      public
      http://localhost:8081/nexus/content/groups/public/

      激活“dev”配置:

      dev

    转载地址:http://zeuyz.baihongyu.com/

    你可能感兴趣的文章
    prometheus + grafana进行服务器资源监控
    查看>>
    Prometheus Alertmanager 告警配置详解
    查看>>
    Prometheus Grafana 展示平台
    查看>>
    Prometheus pushgateway使用详解
    查看>>
    Prometheus 云原生 - Prometheus 数据模型、Metrics 指标类型、Exporter 相关
    查看>>
    Prometheus 云原生 - 基于 file_sd、http_sd 实现 Service Discovery
    查看>>
    Prometheus 云原生 - 微服务监控报警系统 (Promethus、Grafana、Node_Exporter)部署、简单使用
    查看>>
    Prometheus 云原生 - 监控 Linux、MySQL、Redis、RabbitMQ、Docker、SpringBoot 3.x
    查看>>
    Prometheus 介绍
    查看>>
    Prometheus 安全配置详解
    查看>>
    prometheus 安装node_exporter, node_exporter 安装最新版 普罗米修思安装监控服务器client
    查看>>
    Prometheus 安装部署实战
    查看>>
    prometheus 持久化存储方案
    查看>>
    Prometheus 监控系统企业级实战
    查看>>
    Prometheus 监控系统简介
    查看>>
    Prometheus 配置详解
    查看>>
    Prometheus 采集器使用详解
    查看>>
    Prometheus 黑盒监控实战
    查看>>
    prometheus+alertmanager+grafana监控部署教程
    查看>>
    Prometheus+Grafana构建智能化Kubernetes监控系统实战
    查看>>