Nexus Sonatype官方地址link
安装完毕后,还需配置下环境变量,path里追加:
如:path: E:\software\nexus-3.0.1-01\bin;
版本:2.x.x
浏览器打开 http://localhost:8081/nexus/
注:默认端口号为8081,可以通过配置文件修改:E:\software\nexus-2.12.0-01\conf\nexus.properties里的application-port=8081
版本:3.x.x
浏览器打开 http://localhost:8081/
注:默认端口号为8081,可以通过配置文件修改:E:\software\nexus-3.0.1-01\etc\org.sonatype.nexus.cfg里的 application-port=8081
默认:用户名admin,密码admin123
推荐一篇网上博客:网上博客link
类型四类:代理仓库proxy,宿主仓库hosted,仓库组group,虚拟viartual
格式二种:maven2和maven1
策略policy:发布版release和快照版snapshot
对应关系如下:
repository | type | formart | Policy | path |
---|---|---|---|---|
public Repositories | group | maven2 | - | http://localhost:8081/nexus/content/groups/public/ |
snapshot | hosted | maven2 | snapshot | http://localhost:8081/nexus/content/repositories/snapshots/ |
releases | hosted | maven2 | release | http://localhost:8081/nexus/content/repositories/releases/ |
3rd | hosted | maven2 | release | http://localhost:8081/nexus/content/repositories/thirdparty/ |
Central | proxy | maven2 | release | http://localhost:8081/nexus/content/repositories/central/ |
Apache Snapshots | proxy | maven2 | snapshot | http://localhost:8081/nexus/content/repositories/apache-snapshots/ |
central M1 | virtual | maven1 | release | http://localhost:8081/nexus/content/shadows/central-m1/ |
上面介绍的博客上有【添加代理仓库】、【构件搜索】等介绍:link,这就不多说了。
Pom.xml里配置
<repositories>
<repository>
<id>nexusid>
<name>nexusname>
<url>http://localhost:8081/nexus/content/groups/public/url>
<releases>
<enabled>trueenabled>
releases>
<snapshots>
<enabled>trueenabled>
snapshots>
repository>
repositories>
说明:这样配置,只对当前项目有效,如果换了其他的项目,那就还需要写下这个配置,很麻烦,那么有没有只要配置一次,本机每个项目都能这样了。那么我们就想到了Maven里的settings.xml配置文件了。但是,setting里没有提供
settings.xml里配置
profiles>
....
<profile>
<id>nexusid>
<repositories>
<repository>
<id>nexusid>
<name>nexusname>
<url>http://localhost:8081/nexus/content/groups/public/url>
<releases>
<enabled>trueenabled>
releases>
<snapshots>
<enabled>trueenabled>
snapshots>
repository>
repositories>
profile>
profiles>
一个
<activeProfiles>
<activeProfile>nexusactiveProfile>
activeProfiles>
这时候,虽然所有项目都从Nexus中下载了,当时我们还会发现,没有的构件还会去中央仓库中去下载,如果希望只从私服Nexus中下载,没有的话,本机也不用去中央仓库下,我们可以在
mirrors>
<mirror>
<id>nexusid>
<mirrorOf>*mirrorOf>
<name>Human Readable Name for this Mirror.name>
<url>http://localhost:8081/nexus/content/groups/public/url>
mirror>
mirrors>
Maven部署配置
pom.xml
<distributionManagement>
<repository>
<id>nexus-releaseid>
<name>Nexus Release Repositoryname>
<url>http://localhost:8081/nexus/content/repositories/releases/url>
repository>
<snapshotRepository>
<id>nexus-snapshotid>
<name>Nexus snapshot Repositoryname>
<url>http://localhost:8081/nexus/content/repositories/snapshots/url>
snapshotRepository>
distributionManagement>
settings.xml中还需要对Nexus登录的用户和密码进行配置
<settings>
...
<servers>
<server>
<id>nexus-releaseid>
<username>adminusername>
<password>amdmin123password>
server>
<server>
<id>nexus-snapshotid>
<username>adminusername>
<password>amdmin123password>
server>
servers>
...
settings>
手动部署到第三方构件至Nexus
选择3rd party的宿主仓库,然后选择Artifact Upload选项,如果该构件是Maven构件的,那么GAV definition下拉菜单就选From POM,否则就选GAV Parameters.
点击Select Artifact(s) to Upload从本地选择你要上传的构件,然后单击Add Artifact按钮。Nexus允许用户一次上传一个主构件和多个附属构件(Classifier),最后点Upload Artifact(s) 按钮将构件上传到仓库。
Nexus默认预定义了3个用户,三个用户对应三个权限:
※管理admin用户可以添加用户(admin登录进去⇒找到左侧栏User选项卡⇒add User ⇒…略…)
建自己项目的releases和snapshots的hosted仓库(假设名字叫CMDsnapshots,后面所有步骤只以snapshots为例,releases同样的步骤)。(admin权限登录⇒左侧repositories选项卡⇒add下拉菜单,选择hosted repository⇒输入id,name..略…)
设置权限(通过repository Targets可以看出,其实就是*匹配的表达式),需要几个步骤:权限Privileges、角色Roles、用户Users共三个步骤来设定
a)权限:
admin权限登录 ⇒ 左侧Privileges选项卡 ⇒ add下拉菜单,选择repository target Privilege ⇒ 各个域填值Name(CMD_priv_snap);Description(CMD_priv_snap);Repository(CMDsnapshots上面步骤一的对应仓库名);Repository Target(ALL,maven2) ⇒ 保存
这样就会看到增删查改对应的权限xxxx(create),xxxx(delete),xxxx(read),xxxx(update)。
b)角色:
admin权限登录 ⇒ 左侧Roles选项卡 ⇒ add下拉菜单,选择Nexus Role ⇒ 各个域填值Role Id(CMD_role_snap);Name(CMD_role_snap);Description(CMD_role_snap);Role/Privilege Management (选择add,将步骤a产生的权限,选择全部添加进来) ⇒ 保存
c)用户:
admin权限登录 ⇒ 左侧Users选项卡 ⇒ add下拉菜单,选择Nexus User ⇒ User ID;First Name;First Name;LastName;Email;Status(Active生效);RoleMangement (选择add,将步骤b产生的角色,选择全部添加进来) ⇒ 保存
Nexus提供了一系列可配置的调度任务来方便用户管理系统。用户可以设定这些任务运行的方式,例如每天、每周等。调度任务会在适当的时候在后台运行。
打开步骤:左侧栏Scheduled Tasks选项 ⇒ add ⇒...
有多个种类。
种类 | 备注 |
---|---|
Download Indexs | 为代理仓库下载远程索引。 |
Empty Trash | 清空Nexus的回收站,一些操作实际是将文件移到了回收站中。 |
Evict UnusedProxied Items From Repository Caches | 删除代理仓库中长期未被使用的构件缓存。 |
Expire RepositoryCache | Nexus为代理仓库维护了远程仓库的信息以避免不必要的网络流量,该任务清空这些信息以强制Nexus去重新获取远程仓库的信息 |
Publish Indexs | 将仓库索引发布成可供m2eclipse和其他Nexus使用的格式 |
Purge NexusTimeline | 删除Nexus的时间线文件,该文件用于建立系统的RSS源 |
Rebuild MavenMetadata Files | 基于仓库内容重新创建仓库元数据文件maven-metadata.xml,同时重新创建每个文件的校验和md5与sha1。 |
ReIndexRepositories | 为仓库编纂索引 |
Remove SnapshotsFrom Repositories | 以可配置的方式删除仓库的快照构件 |
Synchronize ShadowRepository | 同步虚拟仓库的内容(服务基于Maven1) |
总结:主要讲了Nexus的安装,Nexus的仓库和组,Nexus的配置,Nexus的权限,怎样给每个项目建立自己的仓库并分配权限。最后还介绍了下,Nexus的调度任务。