maven之基础和私服
程序员文章站
2022-05-27 15:05:42
...
*、由于公司需要,遇到网络环境的迁移加上负责maven私服员工的离去,所以就抽空玩了一下maven私服的搭建,经过一阵子弯路,总结了以下小知识,<(* ̄▽ ̄*)/
*、maven工具之nexus的搭建
官网下载https://blog.sonatype.com/开源OSS版即可 windows: 右键解压、cmd管理员身份下定位到bin,执行nexus /run即可启动,时间可能稍稍有点长,若能成功启动,关闭后,执行nexus /install设置成系统服务,uninstall关闭服务 linux: 没有玩,有时间再说~
*、maven工具之nexus上传自己的jar
在user中添加一个用户,主要信息ID+PASSWORD,该信息需要在本地maven的setting.xml中配置使用,在pom配置如下: <distributionManagement> <repository> <id>ayanexus</id> <name>nexus</name> <url>http://127.0.0.1:8081/repository/nexus-release/</url> </repository> <snapshotRepository> <id>ayanexus</id> <name>nexus</name> <url>http://127.0.0.1:8081/repository/nexus-snapshot/</url> </snapshotRepository> </distributionManagement> 其中dis*.id是settings.xml配置时添加的自定义ID 在项目中执行mvn deploy即可发布到自定义私服中 详见:https://blog.csdn.net/rekadowney/article/details/52492587#comments
----------------------------------------遇到的小问题---------------------------------------------
*、 Return code is: 400 , ReasonPhrase:Repository version policy
弱智的原因是:Respository授权默认是disable,需要手动改为allow... 另外一种就是:pom配置的version带有snapshot,但是自己配的却是release