本文共 2060 字,大约阅读时间需要 6 分钟。
maven的仓库分为本地仓库,远程仓库和私服仓库。
私服仓库一般是公司内部私有的,内部进行维护的。公司员工连接私服,从私服中下载jar,或者将自身的jar传到私服上。私服还可以从中央仓库下载jar,当私服中没用jar的时候,就会从中央仓库下载。下载 Nexus,下载地址: 。
可以选择zip和tar,分别对应windows和linux。将下载的zip解压,使用cmd进入bin目录,执行命令:
nexus.bat install
执行命令:
nexus.bat uninstall
1、cmd进入目录,执行命令
nexus.bat start
2、在服务中找到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 运行程序目录在maven的setting.xml中配置
releases admin admin123 snapshots admin admin123
配置项目的pom文件
releases http://localhost:8081/nexus/content/repositories/releases/ snapshots http://localhost:8081/nexus/content/repositories/snapshots/
使用deploy命令即可将jar发布到私服,发布工程中的version,如果以snapshot结尾,则可以发布到快照仓库,如果以release结尾,则可以发布到releases版本。
在setting中配置私服仓库
dev nexus http://localhost:8081/nexus/content/groups/public/ true true public Public Repositories http://localhost:8081/nexus/content/groups/public/
激活
dev
转载地址:http://zeuyz.baihongyu.com/