一、nexus的安装
1.下载nexus(点解这里)
2.下载后解压文件,将解压后的nexus文件放在你自己想要的地方
3.配置环境变量(和配置Java的环境变量一样)
4.安装和启动nexus
由于我已经安装和启动过nexus,所以有错误信息提示
5.启动成功后,在浏览器输入:8081/nexus/就会进入nexus的操作界面
我们也可以在conf/nexus.properties修改端口
6.用admin登录成功后,可以看到如下界面
我们可以看见type有多重类型,这里我们介绍三种:
hosted,本地仓库(也叫宿主仓库),通常我们会部署自己的构件到这一类型的仓库或则是第三方的包(如:oracel的)。
proxy,代理仓库,它们被用来代理远程的公共仓库,如maven中央仓库。
group,仓库组,用来合并多个hosted/proxy仓库,通常我们配置maven依赖仓库组。
--------------------------------------分割线 --------------------------------------
PDF文档可以到Linux公社资源站下载:
------------------------------------------分割线------------------------------------------
具体下载目录在 /2017年资料/3月/5日/Nexus 的使用及Maven的配置/
------------------------------------------分割线------------------------------------------
--------------------------------------分割线 --------------------------------------
二、使用nexus的管理界面上传jar包
三、创建自己的私有仓库
四、创建权限
五、创建角色
五、创建用户
六、关联自己的私有仓库
1.在settings.xml文件中添加镜像文件关联
<mirrors> <mirror> <id>nexus-releases</id> <mirrorOf>*</mirrorOf> <url>http://localhost:8081/nexus/content/groups/public</url> </mirror> <mirror> <id>nexus-snapshots</id> <mirrorOf>*</mirrorOf> <url>http://localhost:8081/nexus/content/repositories/apache-snapshots/</url> </mirror> </mirrors>
2.在settings.xml文件中设置profile
</profiles> <profile> <id>nexusTest</id> <repositories> <repository> <id>local-nexus</id> <url>http://127.0.0.1:8081/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> </profile> </profiles>