四、基于nexus搭建企业级内网私服
1、nexus安装
关于nexus的安装启动从官网http://nexus.sonatype.org/downloads/自行下载安装即可
nexus的默认管理员账号和密码是:admin、admin123
2、nexus中的各种仓库认识
hosted 宿主仓库,一般把公司内部的包发布在这个仓库中来供其他项目组下载使用
proxy 代理仓库,代理外部各种仓库和中央仓库的仓库,最最常见的是阿里云镜像仓库配置在这里
3rd party某些无法直接获取到的包,如某些商业包比如oracle驱动,手动下载或导入到这里
-
group 不是一个仓库而是一个仓库组
将以上各种仓库配置成一个虚拟的仓库组,本地项目依赖于该统一的仓库组,自动连接到需要依赖的不同仓库,主要有以下几个仓库,在nexus中仓库组一般只有个maven-public仓库组
maven-central 中央仓库的代理仓库
maven-releases 宿主仓库的发布仓库,用户发布公司releases版本代码
maven-snapshots宿主仓库的快照仓库,用户发布公司snapshots版本代码
3rd party宿主类型的仓库,存放从本地导入的三方依赖
如果文字无法描述清楚亲自安装nexus后浏览仓库实际下载打包发布相关包后即可理解
3、手工配置nexus仓库
maven-public仓库组 已默认无需配置
maven-central代理仓库,默认是http://maven.aliyun.com/nexus/content/groups/public需要修改为阿里云镜像仓库
- maven-snapshots宿主仓库已默认无需配置
- maven-releases宿主仓库已默认无需配置
-
3rd-party仓库需要手动创建
再次配置maven-public仓库组,将3rd-party仓库加入其中
此处省略图片
4、改造公司项目配置使用私服
- 在本地maven的settings.xml加入如下配置
<profiles>
<profile>
<id>nexus</id>
<!--依赖包下载配置走私服-->
<repositories>
<repository>
<id>nexus</id>
<name>Nexus </name>
<url>http://localhost:8081/nexus/content/groups/public</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<!--插件下载配置走私服-->
<pluginRepository>
<id>nexus</id>
<name>Nexus Plugin Repository</name>
<url>http://localhost:8081/nexus/content/groups/public</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<!--激活的profile-->
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
这样会强制将activeProfile里激活的profile对应的私服地址应用到每个项目中去
- 一般使用时会通过镜像机制进一步配置,强制让所有的下载都走私服,最终配置如下
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8081/nexus/content/groups/public</url>
</mirror>
</mirros>
<profiles>
<profile>
<id>nexus</id>
<!--依赖包下载配置走私服-->
<repositories>
<repository>
<id>nexus</id>
<name>Nexus </name>
<url>http://central</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<!--插件下载配置走私服-->
<pluginRepository>
<id>nexus</id>
<name>Nexus Plugin Repository</name>
<url>http://central</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<!--激活的profile-->
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
5、nexus权限管理机制
- 权限模型 典型的用户-角色-菜单模式,也叫RBAC模型
-
默认设置设置两个用户(早期版本有三个用户)
- admin 拥有所有权限,默认密码admin123
- anonymous匿名用户,可以下载和查看依赖,无密码
- 可以自行创建deployment,拥有匿名用户的所有权限和仓库管理、打包、发布等权限即可
6、部署项目到私服
- 在项目pom.xml增加如下配置
<distributionManagement>
<!--releases版本发布仓库-->
<repository>
<id> nexus-releases</id>
<name> Nexus Release Repository</name>
<url>http://localhost:8081/nexus/content/repositories/releases/</url>
</repository>
<!--快照版本发布仓库-->
<snapshotRepository>
<id> nexus-snapshots</id>
<name> Nexus Snapshot Repository</name>
<url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
- 在maven的settings.xml增加如下配置
<servers>
<server>
<id>nexus-releases</id>
<username>deployment</username>
<password>deployment123</password>
</server>
<server>
<id>nexus-snapshots</id>
<username>deployment</username>
<password>deployment123</password>
</server>
</servers>
说明:这里的id对应pom配置中的id,这里的用户名密码对应上边再nexus中设置的deployment用户的用户名和密码
- 常见打包部署命令简单介绍
- mvn clean package:清理、编译、测试、打包
- mvn clean install:清理、编译、测试、打包、安装到本地仓库
- mvn clean deploy:清理、编译、测试、打包、安装到本地仓库、部署到远程私服仓库
- 手动上次jar包到私服
mvn deploy:deploy-file -DgroupId=com.csource -DartifactId=fastdfs-client-java -Dversion=1.24 -Dpackaging=jar -Dfile=F:\DevelopmentKit\fastdfs_client_v1.24.jar -Durl=http://localhost:8081/repository/3rd-party/ -DrepositoryId=nexus-3rd-party
即是手动上传如下jar包到私服
<server>
<id>nexus-3rd-party</id>
<username>deployment</username>
<password>deployment123</password>
</server>
类似也可以用mvn instaill:install-file将jar包安装到本地仓库