1、 为什么使用nexus
如果没有私服,我们所需的所有构件都需要通过maven的中央仓库和第三方的maven仓库下载到本地,而一个团队中的所有人都重复的从maven仓库下载构件无疑加大了仓库的负载和浪费了外网带宽,如果网速慢的话,还会影响项目的进程。很多情况下项目的开发都是在内网进行的,连接不到maven仓库怎么办呢?开发的公共构件怎么让其它项目使用?这个时候我们不得不为自己的团队搭建属于自己的maven私服,这样既节省了网络带宽也会加速项目搭建的进程,当然前提条件就是你的私服中拥有项目所需的所有构件。
2、nexus下载
下载地址:
3、nexus启动
我下载的是zip包,解压后进入\nexus-2.1.2-bundle\nexus-2.1.2\bin\jsw\,根据操作系统类型选择文件夹,我选的是windows-x86-32文件夹,进入后可看到如下所示bat文件。
图(1)
双击console-nexus.bat运行。游览器中输入http://127.0.0.1:8081/nexus/,出现图(2)所示就代表nexus已经启动成功。
图(2)
8081为默认的端口号,要修改端口号可进入nexus-2.1.2-bundle\nexus-2.1.2\conf\打开nexus.properties文件,修改application-port属性值就可以了。
默认的用户名和密码:admin/admin123,登录后看到图(3)所示:
图(3)
4、nexus仓库
nexus的仓库类型分为以下四种:
group: 仓库组
hosted:宿主
proxy:代理
virtual:虚拟
首次登陆nexus后可以看到以下一个仓库组和多个仓库。
图(4)
public repositories: 仓库组
3rd party: 无法从公共仓库获得的第三方发布版本的构件仓库
apache snapshots: 用了代理apachemaven仓库快照版本的构件仓库
central: 用来代理maven中央仓库中发布版本构件的仓库
central m1 shadow: 用于提供中央仓库中m1格式的发布版本的构件镜像仓库
codehaus snapshots: 用来代理codehausmaven 仓库的快照版本构件的仓库
releases: 用来部署管理内部的发布版本构件的宿主类型仓库
snapshots:用来部署管理内部的快照版本构件的宿主类型仓库
5、配置nexus
5.1、开启远程索引
新搭建的neuxs环境只是一个空的仓库,需要手动和远程中心库进行同步,nexus默认是关闭远程索引下载,最重要的一件事情就是开启远程索引下载。登陆nexus系统,默认用户名密码为admin/admin123。
点击左边administration菜单下面的repositories,找到右边仓库列表中的三个仓库apache snapshots,codehaus snapshots和maven central,然后再没有仓库的configuration下把download remote indexes修改为true。如下图
然后在apache snapshots,codehaus snapshots和maven central这三个仓库上分别右键,选择repari index,这样nexus就会去下载远程的索引文件。
这样设置以后, nexus会自动从远程中央仓库下载索引文件, 为了检验索引文件自动下载是否生效,可以却换到browse index
在左边菜单栏里面有个artifact search, 在输入框里面输入你想要搜索的构件名字,比如:maven, 那么查询结果如下:
5.2建立宿主仓库
新 建公司的内部仓库,步骤为repositories –> add –> hosted repository,在页面的下半部分输入框中填入repository id和repository name即可,比如分别填入
zfy 和 zfy repostiory,另外把deployment policy设置为allow redeploy,点击save就创建完成了。
这里我点击添加宿主类型的仓库,在仓库列表的下方会出现新增仓库的配置,如下所示:
图(6)
点击save按钮后就会在仓库列表中看到刚才新增的仓库。
5.3、创建nexus仓库组
nexus 中仓库组的概念是maven没有的,在maven看来,不管你是hosted也好,proxy也好,或者group也好,对我都是一样的,我只管根据 groupid,artifactid,version等信息向你要构件。为了方便maven的配置,nexus能够将多个仓库,hosted或者 proxy合并成一个group,这样,maven只需要依赖于一个group,便能使用所有该group包含的仓库的内容。
neuxs- 1.9.2.3中默认自带了一个名为“public repositories”组,点击该组可以对他保护的仓库进行调整,把刚才建立的公司内部仓库zfy repostiory加入其中,这样就不需要再在maven中明确指定内部仓库 的地址了。同时创建一个group id为public-snapshots、group name为public snapshots repositories的组,把apache snapshots、codehaus snapshots、snapshots和zfy repostiory加入其中。
到这里neuxs的安装配置就完成了,下面介绍如何在maven中使用自己的私服。
点击菜单栏上的add按钮后选择proxy repository,看到如下所示配置界面:
图(7)
以上本人分别创建 了 hosted和group ,没有创建proxy,经maven测试通过。
6、 settings.xml的配置- xml version="1.0" encoding="utf-8"?>
- <settings xmlns="http://maven.apache.org/settings/1.0.0"
- xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
- xsi:schemalocation="http://maven.apache.org/settings/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
-
- <plugingroups>plugingroups>
- <proxies>proxies>
-
- <servers>
- <server>
- <id>nexus-releasesid>
- <username>adminusername>
- <password>admin123password>
- server>
- <server>
- <id>nexus-snapshotsid>
- <username>adminusername>
- <password>admin123password>
- server>
- servers>
-
- <mirrors>
- <mirror>
- <id>nexus-releasesid>
- <mirrorof>*mirrorof>
- <url>http://localhost:8081/nexus/content/groups/publicurl>
- mirror>
- <mirror>
- <id>nexus-snapshotsid>
- <mirrorof>*mirrorof>
- <url>http://localhost:8081/nexus/content/groups/public-snapshotsurl>
- mirror>
- mirrors>
-
- <profiles>
- <profile>
- <id>nexusid>
- <repositories>
- <repository>
- <id>nexus-releasesid>
- <url>http://nexus-releasesurl>
- <releases><enabled>trueenabled>releases>
- <snapshots><enabled>trueenabled>snapshots>
- repository>
- <repository>
- <id>nexus-snapshotsid>
- <url>http://nexus-snapshotsurl>
- <releases><enabled>trueenabled>releases>
- <snapshots><enabled>trueenabled>snapshots>
- repository>
- repositories>
- <pluginrepositories>
- <pluginrepository>
- <id>nexus-releasesid>
- <url>http://nexus-releasesurl>
- <releases><enabled>trueenabled>releases>
- <snapshots><enabled>trueenabled>snapshots>
- pluginrepository>
- <pluginrepository>
- <id>nexus-snapshotsid>
- <url>http://nexus-snapshotsurl>
- <releases><enabled>trueenabled>releases>
- <snapshots><enabled>trueenabled>snapshots>
- pluginrepository>
- pluginrepositories>
- profile>
- profiles>
-
- <activeprofiles>
- <activeprofile>nexusactiveprofile>
- activeprofiles>
-
- settings>
- <pre class="html" name="code"> <distributionmanagement>
-
- <repository>
- <id>nexus-releasesid>
- <name>nexus release repositoryname>
- <url>http://localhost:8081/nexus/content/repositories/releasesurl>
- repository>
- <snapshotrepository>
- <id>nexus-snapshotsid>
- <name>nexus snapshot repositoryname>
- <url>http://localhost:8081/nexus/content/repositories/snapshotsurl>
- snapshotrepository>
- distributionmanagement>pre><pre class="html" name="code"> pre><pre class="html" name="code">8、mvn:deploy命令上传包,会发现下载路径必不是中央库的路径,而是nexus里面的仓库组路径。这个说明配置环境成功。pre><pre class="html" name="code"><img alt="" src="http://img.my.csdn.net/uploads/201301/10/1357787083_3866.png"><img alt="" src="http://img.my.csdn.net/uploads/201301/10/1357787109_8992.png">pre><pre class="html" name="code"> pre>
- <pre>pre>
- <pre>pre>