maven私服的配置使用方法

网友投稿 556 2023-04-23

maven私服的配置使用方法

maven私服的配置使用方法

maven的仓库分为本地仓库,远程仓库和私服仓库。

私服仓库一般是公司内部私有的,内部进行维护的。公司员工连接私服,从私服中-jar,或者将自身的jar传到私服上。私服还可以从中央仓库-jar,当私服中没用jar的时候,就会从中央仓库-。

搭建私服-

- Nexus,-:http://sonatype.org/nexus/archived/ 。

可以选择zip和tar,分别对应windows和linux。

安装

将-的zip解压,使用cmd进入bin目录,执行命令:

nexus.bat install

卸载

执行命令:

nexus.bat uninstall

启动

1、cmd进入目录,执行命令

nexus.bat start

2、在服务中找到nexus,右键启动

nexus配置文件详细

查看 nexus 的配置文件conf/nexus.properties

application-port=8081 # nexus 的访问端口配置

application-host=0.0.0.0 # nexus 主机监听配置(不用修改)

nexus-webapp=${bundleBasedir}/nexus # nexus 工程目录

nexus-webapp-context-path=/nexus # nexus 的 web 访问路径

nexus-work=${bundleBasedir}/../sonatype-work/nexus # nexus 仓库目录

runtime=${bundleBasedir}/nexus/WEB-INF # nexus 运行程序目录

访问私服

http://localhost:8081/nexus/

点击右上角log in,输入用户名和密码

默认是admin/admin123

登录完毕

上传jar包到私服

在maven的setting.xml中配置

releases

admin

admin123

snapshots

admin

admin123

配置项目的pom文件

releases

http://localhost:8081/nexus/content/repositories/releases/

snapshots

http://localhost:8081/nexus/content/reposhttp://itories/snapshots/

使用deploy命令即可将jar发布到私服,发布工程中的version,如果以snapshot结尾,则可以发布到快照仓库,如果以release结尾,则可以发布到releases版本

从私服-jar包

在setting中配置私服仓库

releases

http://localhost:8081/nexus/content/repositories/releases/

snapshots

http://localhost:8081/nexus/content/repositories/snapshots/

激活

dev

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Springboot微服务打包Docker镜像流程解析
下一篇:idea maven 项目src下的配置文件没有同步至target的解决操作
相关文章

 发表评论

暂时没有评论,来抢沙发吧~