码迷,mamicode.com
首页 > 其他好文 > 详细

Maven之--安装nexus 私服

时间:2020-12-21 12:06:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:div   卸载   文件夹   安装   需要   版本   localhost   host   exe   

开始搜索下载了,nexus3.19版本,下来之后,建立一个maven 骨架过程 quickstart,提示没有lgf4j依赖和和maven插件都没有,开始搜索什么原因,猜想是nexus没有索引,右搜索全网,可以手动导入索引,于是找三个文件

  • nexus-maven-repository-index.gz
  • nexus-maven-repository-index.properties
  • indexer-cli-5.1.1.jar

指令java -jar indexer-cli-5.1.1.jar -u nexus-maven-repository-index.gz -d indexer

http://maven.apache.org/repository/central-index.html 上述文件的下载地址

接着试了半天手动更新索引不行,原来是3.X高版本取消了手动更新索引更能,只能卸载3.19nenux,选择安装的2.14.5,正是坑b,全网搜索3.19都没有手动更新索引的信息,还需研究为什么不自动更新索引

手动更新索引

[1] 关闭 nexus 服务。
[2] 清空 {nexus-xxx}…\sonatype-work\indexer\central-ctx\ 下的所有文件。
[3] 拷贝刚生成的 indexer 文件夹下的所有文件到上面的目录。
[4] 启动 nexus 服务。 双击start-nexus.bat

技术图片

然后在maven的seting.xml中设置

<mirror>
  <id>maven-public</id>
  <mirrorOf>*</mirrorOf>
  <name>localhost nexus</name>
  <url>http://localhost:8081/nexus/content/groups/public/</url>
</mirror>

z url有没有眼熟和阿里镜像一样说明,ali也用的nexus2

接着在idea中新建maven quickstart工程就可以了

技术图片

有了索引之后,蹭蹭蹭很快就下完了,看下载地址为自己的私服 

为了deploy 还需要在pom.xml中

<distributionManagement>
    <repository>
        <id>releases</id>
        <name>Nexus Release Repository</name>
        <url>http://localhost:8081/nexus/content/repositories/releases/</url>
    </repository>
    <snapshotRepository>
        <id>snapshots</id>
        <name>Nexus Snapshot Repository</name>
        <url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
    </snapshotRepository>
</distributionManagement>

  w: 上面的id是唯一的(带复看)

 

Maven之--安装nexus 私服

标签:div   卸载   文件夹   安装   需要   版本   localhost   host   exe   

原文地址:https://www.cnblogs.com/zytcomeon/p/14145808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!