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

    你可能感兴趣的文章
    Openlayers实战教程学习大纲及引导
    查看>>
    Openlayers实战:LayerGroup添加删除显示隐藏
    查看>>
    Openlayers实战:loadstart和loadend事件
    查看>>
    Openlayers实战:modifystart、modifyend互动示例
    查看>>
    Openlayers实战:moveend事件,利用calculateExtent获取地图左上和右下的坐标
    查看>>
    Openlayers实战:overlay上播放视频
    查看>>
    Openlayers实战:select简介及select选择feature实战
    查看>>
    Openlayers实战:个性化比例尺
    查看>>
    Openlayers实战:使几何图形适配窗口
    查看>>
    Openlayers实战:列表与图层双向信息提示
    查看>>
    Openlayers实战:判断共享单车是否在电子围栏内
    查看>>
    Openlayers实战:利用turf获取两个多边形的交集、差集、并集
    查看>>
    Openlayers实战:加载Bing地图
    查看>>
    Openlayers实战:加载CSV文件
    查看>>
    Openlayers实战:加载GeoJSON
    查看>>
    Openlayers实战:加载geoserver发布的WMS数据
    查看>>
    Openlayers实战:加载GPX文件
    查看>>
    Openlayers实战:加载SHP文件
    查看>>
    Openlayers实战:加载高德地图
    查看>>
    Openlayers实战:双击鼠标显示信息名片
    查看>>