1、Nexus介绍

     Nexus是一个强大的Maven仓库管理器,它极大地简化了自己内部仓库的维护和外部仓库的访问。利用Nexus你可以只在一个地方就能够完全控制访问 和部署在你所维护仓库中的每个Artifact。Nexus是一套“开箱即用”的系统不需要数据库,它使用文件系统加Lucene来组织数据。Nexus 使用ExtJS来开发界面,利用Restlet来提供完整的REST APIs,通过m2eclipse与Eclipse集成使用。Nexus支持WebDAV与LDAP安全身份认证。


nexus配置 pluginRepositories_maven

2、安装部署

2.1  下载地址

http://www.sonatype.com/download-oss-sonatype

2.2  安装

1、  解压安装包

tar –zxvf nexus-3.0.0-03-unix.tar.gz

2、  修改Jdk路径

Nexus3.0.0的版本需要JDK1.8的版本

a)、cd /data/nexus-3.0.0-03/bin

b)、vi nexus

c)、添加JDK配置

INSTALL4J_JAVA_HOME_OVERRIDE=/data/jdk1.8.0_91

3、  修改使用的用户

a)、vi nexus.rc

b)、添加配置

   run_as_user=root

4、  启动nexus服务

./ nexus

2.3 成功验证

访问http://XXX:8081,看是否能跳转到Nexus页面


nexus配置 pluginRepositories_maven_02

   1)

修改数据存储路径,文件目录:bin/nexus.vmoptions

nexus配置 pluginRepositories_nexus_03



 


 2)修改IP、端口、访问根目录,文件目录:etc/org.sonatype.nexus.cfg


nexus配置 pluginRepositories_jar_04




nexus配置 pluginRepositories_上传_05




3、功能介绍

3.1  Browse Server Content


nexus配置 pluginRepositories_nexus_06

3.1.1  Search

这个就是类似Maven仓库上的搜索功能,就是从私服上查找是否有哪些包。

注意:

1、在Search这级是支持模糊搜索的,如图所示:


nexus配置 pluginRepositories_nexus_07

2、如果进入具体的目录,好像不支持模糊搜索,如图所示:


nexus配置 pluginRepositories_jar_08

3.1.2  Browse

3.1.1.1 Assets

这是能看到所有的资源,包含Jar,已经对Jar的一些描述信息。

3.1.1.1 Components

这里只能看到Jar包。

3.2  Server Adminstration And configuration

看到这选项是要进行登录的,在右上角点击“Sign In”的登录按钮,输入admin/admin123,登录成功之后,即可看到此功能,如图所示:


nexus配置 pluginRepositories_上传_09

 

3.2.1  Repository

3.2.1.1 Blob Stores

文件存储的地方,创建一个目录的话,对应文件系统的一个目录,如图所示:


nexus配置 pluginRepositories_上传_10

 

3.2.1.1 Repositories
3.2.1.1.1Proxy

这里就是代理的意思,代理中央Maven仓库,当PC访问中央库的时候,先通过Proxy下载到Nexus仓库,然后再从Nexus仓库下载到PC本地。

这样的优势只要其中一个人从中央库下来了,以后大家都是从Nexus私服上进行下来,私服一般部署在内网,这样大大节约的宽带。

创建Proxy的具体步骤

1、  点击“Create Repositories”按钮


nexus配置 pluginRepositories_jar_11

 

2、  选择要创建的类型


nexus配置 pluginRepositories_上传_12

 

3、  填写详细信息

Name:就是为代理起个名字

Remote Storage: 代理的地址,Maven的地址为: https://repo1.maven.org/maven2/

Blob Store: 选择代理下载包的存放路径

3.2.1.1.2Hosted

Hosted是宿主机的意思,就是怎么把第三方的Jar放到私服上。

Hosted有三种方式,Releases、SNAPSHOT、Mixed

Releases: 一般是已经发布的Jar包

Snapshot: 未发布的版本

Mixed:混合的

Hosted的创建和Proxy是一致的,具体步骤可参考2.1.1.1.1

注意事项:

Deployment Pollcy: 我们需要把策略改成“Allow redeploy”。


nexus配置 pluginRepositories_maven_13

3.2.1.1.3Group

能把两个仓库合成一个仓库来使用,目前没使用过,所以没做详细的研究。

3.2.2  Security

这里主要是用户、角色、权限的配置

 

3.2.3  Support

包含日志及数据分析。

 

3.2.4  System

主要是邮件服务器,调度的设置地方



这部分主要讲怎么和Maven做集成,集成的方式主要分以下种情况:代理中央仓库、Snapshot包的管理、Release包的管理、第三方Jar上传到Nexus上

4  代理中央仓库

只要在PMO文件中配置私服的地址即可,配置如下:


1



2



3



4



5



6



7



8



9



10



11



12



13


<repositories>



<repository>



<id>maven-central</id>



<name>maven-central</name>



<url>http: //10.0.1.42:8081/repository/maven-central/</url>



<snapshots>



<enabled> true </enabled>



</snapshots>



<releases>



<enabled> true </enabled>



</releases>



</repository>



</repositories>



  

5  Snapshot包的管理

1、  修改Maven的settings.xml文件,加入认证机制


1



2



3



4



5



6


<servers>



<server>



<id>nexus</id>



<username>admin</username>



<password>admin123</password>



</server>



 

2、  修改工程的Pom文件


1



2



3



4



5



6



7



8



9



10



11



12


<distributionManagement>



<snapshotRepository>



<id>nexus</id>



<name>Nexus Snapshot</name>



<url>http: //10.0.1.42:8081/repository/maven-snapshots/</url>



</snapshotRepository>



<site>



<id>nexus</id>



<name>Nexus Sites</name>



<url>dav:http: //10.0.1.42:8081/repository/maven-snapshots/</url>



</site>



</distributionManagement>



  

注意事项:

nexus配置 pluginRepositories_maven_14

 

截图中的名字要跟apache-maven-3.0.5-nexus\conf\settings.xml的名字一定要对应上。

3、  上传到Nexus上

a)、项目编译成的jar是Snapshot(POM文件的头部)


1



2



3



4


<groupId>com.woasis</groupId>



<artifactId>test-nexus</artifactId>



<version>1.0.0-<span style= "color: #ff0000;" >SHAPSHOT</span></version>



<packaging>jar</packaging>



  

b)、使用mvn deploy 即可,运行结果如图所示:


nexus配置 pluginRepositories_jar_15

 

时间戳,做为历史备份版本。

5  Releases包的管理

a)、与Snapshot大同小异,只是上传到私服上的Jar包不会自动带时间戳,如图所示:


nexus配置 pluginRepositories_上传_16

 

b)、与Snapshot配置不同的地方,就是工程的PMO文件,加入repository配置


<distributionManagement>        


                  <repository>        


                  <id>nexus</id>        


                  <name>Nexus Snapshot</name>        


                  <url>http:         //10.0.1.42:8081/repository/maven-releases/</url>        


                  </repository>


  

c)、打包的时候需要把Snapshot去掉,如图所示:


<groupId>com.woasis</groupId>        


                  <artifactId>test-nexus</artifactId>        


                  <version>1.0.0</version>        


         <packaging>jar</packaging>



  

6  第三方Jar上传到Nexus


mvn deploy:deploy-file -DgroupId=org.jasig.cas.client -DartifactId=cas-client-core -Dversion=3.1.3 -Dpackaging=jar -DrepositoryId=nexus -Dfile=D:\cas-client-core-3.1.3.jar -Durl=http:         //10.0.1.42:8081/repository/maven-releases/-DgeneratePom=false


  

注意事项:

-DrepositoryId=nexus  对应的就是Maven中settings.xml的认证配的名字。