Skip to content

sonatype-nexus 3私服使用笔记

最近重新搭建了一次nexus3,跟以前的2的版本相比有一些区别。

安装的参考:

https://www.cnblogs.com/kevingrace/p/6201984.html

docker 安装建议使用官方提供的

https://hub.docker.com/r/sonatype/nexus3/

硬件要求:

最低1024M 但是我自己单机用 768M也能启动

参数配置在:

bin/nexus.vmoptions

http参数配置在:

etc/nexus-default.properties

使用上:

pom 文件的依赖,这里的路径由之前的

 

nexus/content/groups/public

变成

<repositories>
 <repository>
 <id>local-maven</id>
 <name>local-maven</name>
 <url>http://127.0.0.1:8081/repository/maven-public/</url>
 </repository>
</repositories>

而私服的上传部分:
也由之前的

content/repositories/snapshots
content/repositories/releases

变成

repository/maven-snapshots/
repository/maven-releases/

另外:服务器所存储的文件形式也发生了一些变化。

发表评论

电子邮件地址不会被公开。 必填项已用*标注