博客
关于我
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/

    你可能感兴趣的文章
    npm发布自己的组件UI包(详细步骤,图文并茂)
    查看>>
    npm和package.json那些不为常人所知的小秘密
    查看>>
    npm和yarn清理缓存命令
    查看>>
    npm和yarn的使用对比
    查看>>
    npm如何清空缓存并重新打包?
    查看>>
    npm学习(十一)之package-lock.json
    查看>>
    npm安装 出现 npm ERR! code ETIMEDOUT npm ERR! syscall connect npm ERR! errno ETIMEDOUT npm ERR! 解决方法
    查看>>
    npm安装crypto-js 如何安装crypto-js, python爬虫安装加解密插件 找不到模块crypto-js python报错解决丢失crypto-js模块
    查看>>
    npm安装教程
    查看>>
    npm报错Cannot find module ‘webpack‘ Require stack
    查看>>
    npm报错Failed at the node-sass@4.14.1 postinstall script
    查看>>
    npm报错fatal: Could not read from remote repository
    查看>>
    npm报错File to import not found or unreadable: @/assets/styles/global.scss.
    查看>>
    npm报错unable to access ‘https://github.com/sohee-lee7/Squire.git/‘
    查看>>
    npm淘宝镜像过期npm ERR! request to https://registry.npm.taobao.org/vuex failed, reason: certificate has ex
    查看>>
    npm版本过高问题
    查看>>
    npm的“--force“和“--legacy-peer-deps“参数
    查看>>
    npm的安装和更新---npm工作笔记002
    查看>>
    npm的常用操作---npm工作笔记003
    查看>>
    npm的常用配置项---npm工作笔记004
    查看>>