博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nexus Repository 安装及使用
阅读量:6286 次
发布时间:2019-06-22

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

hot3.png

Nexus Repository Manager OSS 3.x 安装

  • 下载

选择对应的版本下载,以nexus-3.6.0-02-win64()为例;

  • 解压

将nexus-3.6.0-02-win64.zip解压至对应目录;

  • 执行

...\nexus-3.6.0-02-win64\nexus-3.6.0-02\bin>nexus.exe /run

  • 修改配置

配置文件位于:\etc\nexus-default.properties

  1. application-port=8091 内嵌Jetty对应Web服务端口号;
  2. application-host=0.0.0.0 对应Host;
  3. nexus-context-path=/nexus
  • 注册服务(Windows Platform)

...\nexus-3.6.0-02-win64\nexus-3.6.0-02\bin>nexus.exe /install nexus

  • Nexus Repository Manager 管理页面

URL:http://localhost:8091/nexus;

162131_gG8T_1455553.png

点击右上角Sign in 按钮登录。默认用户名:admin,密码:admin123;

点击齿轮状配置按钮,进入配置页面;

162340_2vu7_1455553.png

  • Nexus、Maven结合使用,建立本地私库
  1. 修改Maven全局或者本地settings.xml;
  2. 或者直接配置在项目的POM文件中;

上述两种方式均可;

settings.xml增加如下配置:

<localRepository>D:\...\repository-dev</localRepository>

<mirror>

        <id>nexus-public</id>
        <mirrorOf>central</mirrorOf>
        <name>Nexus Repository</name>
        <url>http://<Host>:8091/nexus/repository/maven-public/</url>
    </mirror>

<server>

        <id>nexus-releases</id>
        <username>dev</username>
        <password>123456</password>
    </server>
    <server>
        <id>nexus-snapshot</id>
        <username>dev</username>
        <password>123456</password>
    </server>

POM 文件修改实例:

nexus-public
nexus-public
http://
:8091/nexus/repository/maven-public/
true
true
nexus-nexus
Releases
http://
:8091/nexus/repository/maven-releases/
nexus-nexus
Snapshot
http://
:8091/nexus/repository/maven-snapshots/

-------------------------------------------------------------------------------------------------------------

本地私库即可从远程仓库下载资源了:

173308_ryF9_1455553.png

转载于:https://my.oschina.net/u/1455553/blog/1559924

你可能感兴趣的文章
服务器硬件问题整理的一点总结
查看>>
SAP S/4HANA Cloud: Revolutionizing the Next Generation of Cloud ERP
查看>>
Mellanox公司计划利用系统芯片提升存储产品速度
查看>>
白帽子守护网络安全,高薪酬成大学生就业首选!
查看>>
ARM想将芯片装进人类大脑 降低能耗是一大挑战
查看>>
Oracle数据库的备份方法
查看>>
Selenium 自动登录考勤系统
查看>>
关于如何以编程的方式执行TestNG
查看>>
智能照明造福千家万户 家居智能不再是梦
查看>>
物联网如何跳出“看起来很美”?
查看>>
浅谈MySQL 数据库性能优化
查看>>
《UNIX/Linux 系统管理技术手册(第四版)》——1.10 其他的权威文档
查看>>
灵动空间 创享生活
查看>>
《UNIX网络编程 卷1:套接字联网API(第3版)》——8.6 UDP回射客户程序:dg_cli函数...
查看>>
不要将时间浪费到编写完美代码上
查看>>
《算法基础:打开算法之门》一3.4 归并排序
查看>>
高德开放平台开放源代码 鼓励开发者创新
查看>>
《高并发Oracle数据库系统的架构与设计》一2.5 索引维护
查看>>
Firefox 是 Pwn2own 2014 上攻陷次数最多的浏览器
查看>>
阿里感悟(十八)- 应届生Review
查看>>