本机环境
win 8
jdk 7
maven 3.2
nexus 2.11
版本选择
nexus 2.6 及 2.6 版本要求 jdk 1.7 或 1.7 版本(jdk 1.6 请选择 nexus 2.5 及 以下版本)。根据你现有的环境来选择合适的版本。
这里选择 (如果无法打开下载, 可将新标签页地址栏中的地址复制到迅雷等下载工具中进行下载)。
下载得到 nexus-2.11.0-bundle.zip 压缩包。解压缩里面的 nexus-2.11.0-02 目录,如我的 e:\setup\dev\servers\nexus, 最终得到
的目录结构为 e:\setup\dev\servers\nexus\nexus-2.11.0-02。
配置 nexus 环境
nexus_home = e:\setup\dev\servers\nexus\nexus-2.11.0-02
path = .;%nexus_home%\bin
安装 nexus 服务
如果你所使用的是 win8 操作系统,以下操作需要管理员权限。在命令行中执行
nexus install(win8 系统组合键为 ctrl x, a):
c:\windows\system32>nexus install
wrapper | nexus installed.
启动 nexus
在命令行中执行
nexus start:
c:\windows\system32>nexus start
wrapper | starting the nexus service...
wrapper | waiting to start...
wrapper | waiting to start...
wrapper | waiting to start...
wrapper | nexus started.
页面访问的入口地址:
登录 nexus
默认的管理员账号是:admin, 密码是:admin123
停止 nexus
在命令行中执行
nexus stop:
c:\users\fanlychie>nexus stop
wrapper | stopping the nexus service...
wrapper | waiting to stop...
wrapper | nexus stopped.
修改 nexus 账号密码
先停止 nexus,打开 %nexus_home%\sonatype-work\nexus\conf\security.xml,修改即可。
nexus 的密码采用 sha1 加密算法 ( ),将加密后的 sha1 串(小写)拷贝覆盖原来的。重启 nexus:nexus restart 。
<user>
<id>adminid>
<firstname>administratorfirstname>
<lastname>userlastname>
<password>2899441143e28aee7287e8da3d7211258f5edbd3password>
<status>activestatus>
<email>fanlychie@yeah.netemail>
user>
修改 nexus 端口
打开 %nexus_home%\nexus-2.11.0-02\conf\nexus.properties, 修改 application-port 的值。重启 nexus:
nexus restart 。
application-port=8081
application-host=0.0.0.0
nexus-webapp=${bundlebasedir}/nexus
nexus-webapp-context-path=/nexus
仓库类型
打开 views/repositories --> repositories 视图
nexus 仓库分为 4 种,group(仓库组)、hosted(宿主仓库)、proxy(代理仓库)、virtual(虚拟仓库)。
我们自己开发的构件通常是发布到 hosted 仓库,proxy 用来代理远程的公共仓库,一个 group 可以包含多个 hosted/proxy 仓库。
仓库组
打开 views/repositories --> repositories --> public repositories --> configuration 视图
configuration 栏的左边是仓库组仓库列表,右边是当前可选的仓库,可以从右边挑选合适的仓库加入到左边的仓库组,点击 save 保存即可。
一个仓库组通常包含了多个仓库,仓库组中的仓库列表的顺序决定了构件下载时遍历的仓库的先后次序,因此,建议将远程中央仓库(central)放
到仓库组的最后一项。
maven settings.xml 配置
在 settings.xml 配置文件中添加如下配置:
<servers>
<server>
<id>releasesid>
<username>adminusername>
<password>admin123password>
server>
<server>
<id>snapshotsid>
<username>adminusername>
<password>admin123password>
server>
<server>
<id>thirdpartyid>
<username>adminusername>
<password>admin123password>
server>
servers>
<mirrors>
<mirror>
<id>nexusid>
<mirrorof>*mirrorof>
<name>nexus public repositoriesname>
<url>http://127.0.0.1:8088/nexus/content/groups/publicurl>
mirror>
mirrors>
节点配置服务的账户密码,用于发布构件时进行身份和权限的认证。 节点用于镜像的配置,具体用法参考 maven 镜像配置
发布构件
在 nexus 中找到如下的视图页面:
复制以上的配置,粘贴到你的 pom.xml 配置文件中:
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelversion>4.0.0modelversion>
<groupid>org.fanlychiegroupid>
<artifactid>projartifactid>
<version>1.0.0version>
<packaging>jarpackaging>
<name>projname>
<url>http://maven.apache.orgurl>
<distributionmanagement>
<repository>
<id>releasesid>
<url>http://localhost:8088/nexus/content/repositories/releasesurl>
repository>
distributionmanagement>
project>
这里需要注意的是,repository 节点的 id 需与 settings.xml 中配置的 server 节点的 id 相同,如果不相同,修改任意一方都可以,只
要让它们保持一致即可,否则,发布构件的时候会报 401,reasonphrase:unauthorized 的错误,原因是无法认证用户的身份。
右键项目,run as --> maven build...,在 goals 栏输入
deploy 或在命令行(cmd)执行
mvn deploy,在控制台若能看到
build success,表明构件发布成功。你可以在 nexus 的 releases 仓库中找到这个构件:
发布构件的时候,如果想把源码也一起发布出去(执行
mvn dependency:sources 可获得源码),配置如下:
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelversion>4.0.0modelversion>
<groupid>org.fanlychiegroupid>
<artifactid>projartifactid>
<version>1.0.1version>
<packaging>jarpackaging>
<name>projname>
<url>http://maven.apache.orgurl>
<distributionmanagement>
<repository>
<id>releasesid>
<url>http://localhost:8088/nexus/content/repositories/releasesurl>
repository>
distributionmanagement>
<build>
<plugins>
<plugin>
<groupid>org.apache.maven.pluginsgroupid>
<artifactid>maven-source-pluginartifactid>
<version>2.4version>
<executions>
<execution>
<id>attach-sourcesid>
<phase>installphase>
<goals>
<goal>jar-no-forkgoal>
goals>
execution>
executions>
plugin>
plugins>
build>
project>
同一个构件是不允许发布两次的,先修改一下构件的版本,然后
deploy,结果如图:
发布快照
快照用于区分稳定与不稳定的构件(发布的版本就是稳定的,快照版本是不稳定的)。构件的升级通常会带来许多的不稳定性,需要不断的修复,
快照可以避免由于升级带来的不稳定性迫使的不停的升级版本号,最终造成版本号的泛滥的问题。快照允许重新发布,而不需要变更构件的版本号。
在 nexus 中找到如下的视图页面:
复制以上的配置,粘贴到你的 pom.xml 配置文件中:
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelversion>4.0.0modelversion>
<groupid>org.fanlychiegroupid>
<artifactid>projartifactid>
<version>2.0.0-snapshotversion>
<packaging>jarpackaging>
<name>projname>
<url>http://maven.apache.orgurl>
<distributionmanagement>
<repository>
<id>releasesid>
<url>http://localhost:8088/nexus/content/repositories/releasesurl>
repository>
<snapshotrepository>
<id>snapshotsid>
<url>http://localhost:8088/nexus/content/repositories/snapshotsurl>
snapshotrepository>
distributionmanagement>
<build>
<plugins>
<plugin>
<groupid>org.apache.maven.pluginsgroupid>
<artifactid>maven-source-pluginartifactid>
<version>2.4version>
<executions>
<execution>
<id>attach-sourcesid>
<phase>installphase>
<goals>
<goal>jar-no-forkgoal>
goals>
execution>
executions>
plugin>
plugins>
build>
project>
版本号含有 snapshot 的构件将发布到 snapshots 仓库,否则,将发布到 releases 仓库。执行发布命令:
mvn deploy,结果如图:
发布第三方构件
步骤见下图的标注:
命令行方式发布:
mvn deploy:deploy-file -dgroupid=自定义groupid -dartifactid=自定义artifactid -dversion=版本号 -dpackaging=jar
-dfile=jar文件的路径 -durl=http://127.0.0.1:8088/nexus/content/repositories/thirdparty -drepositoryid=thirdparty
远程索引
在 nexus 中找到如下的视图页面:
保存之后,在左侧面板中选择 administration --> scheduled tasks,如下图:
可以看到这里有一个 repair repositories index 任务,任务完成之后会自动从面板中移除,点击左上角的 refresh 按钮来查看。任务完成
之后回到 repositories 面板,选择 central 仓库右键,选择 update index,再回到 scheduled tasks 面板,可以看到有一个 update
repositories index 任务,这个任务花时较长,任务完成之后,回到 repositories 面板,在 browse index 中可以看到从远程仓库下载回
来的索引文件,有了索引,即使 nexus 私服还没有你想要构件,你也可以搜索出你想要查找的构件。