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

    你可能感兴趣的文章
    Text-to-Image with Diffusion models的巅峰之作:深入解读 DALL·E 2
    查看>>
    TCP基本入门-简单认识一下什么是TCP
    查看>>
    tableviewcell 中使用autolayout自适应高度
    查看>>
    Orcale表被锁
    查看>>
    svn访问报错500
    查看>>
    org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned
    查看>>
    org.apache.ibatis.type.TypeException: Could not resolve type alias 'xxxx'异常
    查看>>
    org.apache.poi.hssf.util.Region
    查看>>
    org.apache.xmlbeans.XmlOptions.setEntityExpansionLimit(I)Lorg/apache/xmlbeans/XmlOptions;
    查看>>
    org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /
    查看>>
    org.hibernate.HibernateException: Unable to get the default Bean Validation factory
    查看>>
    org.hibernate.ObjectNotFoundException: No row with the given identifier exists:
    查看>>
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
    查看>>
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
    查看>>
    org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded
    查看>>
    org.tinygroup.serviceprocessor-服务处理器
    查看>>
    org/eclipse/jetty/server/Connector : Unsupported major.minor version 52.0
    查看>>
    org/hibernate/validator/internal/engine
    查看>>
    SQL-36 创建一个actor_name表,将actor表中的所有first_name以及last_name导入改表。
    查看>>
    ORM sqlachemy学习
    查看>>