公司局域网内搭建的远程仓库服务器,称为私服.。
私服是公司内部的maven远程仓库,每个开发人员的电脑上安装maven软件并且连接私服服务器,开发人员将自己开发的项目打成jar并发布到私服服务器,其它开发人员从私服服务器下载所依赖的构件
私服还充当一个代理服务器,当私服上没有 jar 包会从互联网中央仓库自动下载。
Nexus是Maven仓库管理器,通过nexus可以搭建maven仓库,同时nexus还提供强大的仓库管理功能,构件搜索功能等。
解压nexus下载压缩包,cmd进入 bin目录,执行 nexus.bat install,安装成功在服务中查看nexus服务。
cmd进入nexus的bin目录,执行:nexus.bat uninstall
cmd进入bin目录,执行 nexus.bat start
服务管理列表直接启动 nexus服务
nexus配置文件:conf/nexus.properties
#Jetty section
application-port=8081 # nexus 的访问端口配置
application-host=0.0.0.0 # nexus 主机监听配置(不用修改)
nexus-webapp=${bundleBasedir}/nexus # nexus 工程目录
nexus-webapp-context-path=/nexus # nexus 的 web 访问路径
#Nexus section
nexus-work=${bundleBasedir}/../sonatype-work/nexus # nexus 仓库目录
runtime=${bundleBasedir}/nexus/WEB-INF # nexus 运行程序目录
浏览器访问:http://localhost:8081/nexus
Nexus内置账户:admin,密码:admin123
nexus仓库有4种类型:
1. hosted,宿主仓库,部署自己的 jar 到这个类型的仓库,包括 releases 和 snapshot 两部分。Releases:公司内部发布版本仓库、 Snapshots :公司内部测试版本仓库
2. proxy,代理仓库,用于代理远程的公共仓库,如 maven 中央仓库,用户连接私服,私服自动去中央仓库下载 jar 包或者插件。
3. group,仓库组,用来合并多个 hosted/proxy 仓库,通常我们配置自己的 maven 连接仓库组。
4. virtual(虚拟):兼容 Maven1 版本的 jar 或者插件
nexus有7种仓库:
central :代理仓库,代理中央仓库
apache-snapshots :代理仓库,存储 snapshots 构件,代理地址 https://repository.apache.org/snapshots/
central-m1 :virtual 类型仓库,兼容 Maven1 版本的 jar 或者插件
releases : 本地仓库,存储 releases 构件。
snapshots : 本地仓库,存储 snapshots 构件。
thirdparty :第三方仓库
public:仓库组
1.配置maven的settings.xml文件
配置maven环境,修改settings.xml文件,配置连接私服的用户和密码 ,用于私服校验。
<servers>
<!--releases 连接发布版本项目仓库-->
<server>
<id>releases</id>
<username>admin</username>
<password>admin123</password>
</server>
<!--snapshots 连接测试版本项目仓库-->
<server>
<id>snapshots</id>
<username>admin</username>s
<password>admin123</password>
</server>
</servers>
2.配置项目的pom.xml文件
配置私服仓库的地址,根据工程的版本号决定上传到哪个宿主仓库
<distributionManagement>
<repository>
<id>release</id>
<name>release</name>
<url>http://localhost:8081/repository/release/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>zsnapshots</name>
<url>http://localhost:8081/repository/snapshots/</url>
</snapshotRepository>
</distributionManagement>
3.执行mvn deploy命令
对工程执行deploy命令,根据项目pom.xml中version定义决定发布到哪个仓库,如果version定义为snapshot,则执行deploy后查看nexus的snapshot仓库,如果version定义为release则项目将发布到nexus的release仓库。
nexus为了方便从私服下载 jar 包可以将多个仓库组成一个仓库组,每个工程需要连接私服的仓库组下载 jar 包。
配置nexus仓库组(可选)
1.在maven的settings.xml文件中配置下载模板
<!-- 下载jar包配置 -->
<profile>
<!--profile的id -->
<id>dev</id>
<repositories>
<repository>
<!--仓库id,repositories可以配置多个仓库,保证id不重复 -->
<id>nexus</id>
<!--仓库地址,即nexus仓库组的地址 -->
<url>http://localhost:8081/nexus/content/groups/public/</url>
<!--是否下载releases构件 -->
<releases>
<enabled>true</enabled>
</releases>
<!--是否下载snapshots构件 -->
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<!-- 插件仓库,maven的运行依赖插件,也需要从私服下载插件 -->
<pluginRepository>
<!-- 插件仓库的id不允许重复,如果重复后边配置会覆盖前边 -->
<id>public</id>
<name>Public Repositories</name>
<url>http://localhost:8081/nexus/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
</profile>
2.在maven的settings.xml文件中配置激活下载模板
3.执行测试
将项目各个模块安装到本地仓库,再从本地仓库删除前面安装到私服的模块jar包,然后执行tomcat:run命令。(先从本地仓库找 ,找不到从私服找)
参数说明:
DgroupId和DartifactId 构成 jar包在pom.xml中的坐标,项目就是依靠这两个属性定位。
Dfile表示需要上传的jar包的绝对路径。
Durl私服上仓库的位置,打开 nexus——>repositories菜单,可以看到该路径。
DrepositoryId服务器的表示 id,在 nexus的configuration可以看到。
Dversion 表示版本信息,
安装到本地
mvn install:install-file -DgroupId=cn.ybzy -DartifactId=ssm_service -Dversion=1.0-SNAPSHOT -Dfile=ssm_service-1.0-SNAPSHOT.jar -Dpackaging=jar
mvn install:install-file -DgroupId=cn.ybzy -DartifactId=ssm_service -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile= jar包所在路径
安装到私服
在maven核心配置文件settings.xml中配置第三方仓库的 server信息
<!--thirdparty 第三发仓库-->
<server>
<id>thirdparty</id>
<username>admin</username>
<password>admin123</password>
</server>
执行命令:
mvn deploy:deploy-file -DgroupId=cn.ybzy -DartifactId=ssm_service -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=ssm_service-1.0-SNAPSHOT.jar -Durl=http://localhost:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty
mvn deploy:deploy-file -DgroupId=cn.ybzy -DartifactId=ssm_service -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=jar觉得路径 -Durl=http://localhost:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty
注意仓库策略
策略与上传jar的版本信息不匹配,无法上传到私服。