Maven+Nexus私服搭建
10 Aug 2012
官方下载地址:http://www.sonatype.org/nexus/go
$ sudo mkdir -p /opt/nexus // 创建/opt/nexus/目录
$ sudo chmod 777 /opt/nexus // 给/opt/nexus/目录可读可写可执行权限
$ tar xvzf nexus-2.x.x-bundle.tgz // 解压缩
$ cp -r nexus-2.x.x /opt/nexus/ // 拷贝到/opt/nexus/目录下
基本配置 主要实现本地创建代理远程仓库。
1、打开WEB管理界面:http://127.0.0.1:8081/nexus/index.html
2、点击右上角Log In进行登录,默认帐号:admin、密码:admin123
3、点击左侧Repositories项 -> central仓库 -> Configuration -> Download Remote Indexes=True -> Save,表示下载远程仓库的索引。
4、右键central仓库 -> Update Index,更新远程仓库索引到本地,这一步能够加速本地索引。
Maven配置 配置Maven默认使用本地仓库,修改setting.xml全局配置文件。
$ vim ~/.m2/setting.xml
central
central
central
http://127.0.0.1:8081/nexus/content/repositories/central
nexus
nexus
local private nexus
http://127.0.0.1:8081/nexus/content/groups/public
nexus-snapshots
nexus-snapshots
local private nexus snapshots
http://127.0.0.1:8081/nexus/content/groups/public-snapshots
nexus-releases
admin
admin123
nexus-snapshots
admin
admin123
nexus
nexus-snapshots
官方教程:http://sonatype.com/books/nexus-book/reference/index.html
很详细的教程:http://juvenshun.iteye.com/blog/349534