
相关链接:
Maven零散笔记——常用配置
Maven零散笔记——配置Nexus
Nexus用于建立本地MVN仓库,我就不在这里罗嗦了。
当前的版本为2.0.6,可以直接 下载tar包,解压后进行简单配置就可以使用了!
安装&配置Nexus
闲言少叙,命令走起~
#下载 wget http://www.sonatype.org/downloads/nexus-2.0.6-bundle.tar.gz #解压 tar zxvf nexus-2.0.6-bundle.tar.gz #做软链接,方便操作,应个人需要 ln -s nexus-2.0.6 nexus
解压后,应该获得如下目录结构:
- nexus-2.0.6是nexus服务主目录
- sonatype-work是真正的仓库,同时包含了nexus的配置,如定时任务、用户配置等

nexus支持如下命令:
引用
nexus { console | start | stop | restart | status | dump }
端口配置在 nexus/conf/nexus.properties文件中,文件如下:
# Sonatype Nexus # ============== # This is the most basic configuration of Nexus. # Jetty section application-port=8081 application-host=0.0.0.0 nexus-webapp=${bundleBasedir}/nexus nexus-webapp-context-path=/nexus # Nexus section nexus-work=${bundleBasedir}/../sonatype-work/nexus runtime=${bundleBasedir}/nexus/WEB-INF pr.encryptor.publicKeyPath=/apr/public-key.txt
如果你需要修改nexus服务端口或IP,上面这段修改就是了。

启动后,如下界面:

默认管理员帐号:
用户名:admin
密码:admin123
注:最好现在就修改管理员密码!,nexus已经做得很人性化了,我就介绍如何修改密码了!
通常可以在maven工具里找到的包,也可以在这里找到:

定制任务
当然,为了让你的nexus更加智能,需要做一些定时任务,譬如定期下载索引,加快本地mvn检索速度。
以建立定期下载索引为例,在 Administration选项中找到 Scheduled Tasks,在窗口页面点击 Add,进行配置:

除此之外,我还经常要添加一些额外的jar到nexus中,譬如我要追加BC的组件包到nexus中,供团队其他开发成员使用。
找到 View/Repositories,打开 Repositories窗口,选择 3rd party,进行如下配置:

之后,就可以在这里找到该jar了:

私服配置
为了让你的maven默认访问你的私服,需要配置settings.xml:
... ...... nexus * Nexus Mirror http:// /nexus/content/groups/public ... nexus nexus local private nexus /nexus/content/groups/public true false nexus local private nexus http:// /nexus/content/groups/public-snapshots false true nexus local private nexus http:// /nexus/content/groups/public true false nexus local private nexus http:// /nexus/content/groups/public-snapshots false true nexus
将jar部署至Nexus
如果通过Eclipse Maven工具,或者直接操作Maven命令行,将jar部署至nexus:
pom.xml
... ... nexus-releases Nexus Release Repository http:// /nexus/content/repositories/releases/ nexus-snapshots Nexus Snapshot Repository http:// /nexus/content/repositories/snapshots/
settings.xml
... ... nexus-releases admin admin123 nexus-snapshots admin admin123
最后,在项目目录中执行 mvn deploy
如果想要在发布jar的同时,把source一通发布,需要做这个配置:
org.apache.maven.plugins maven-source-plugin jar
应该够用了!

相关链接:
Maven零散笔记——常用配置
Maven零散笔记——配置Nexus