美文网首页
采坑记 idea mavn不下载问题排查

采坑记 idea mavn不下载问题排查

作者: 团长plus | 来源:发表于2018-11-30 11:38 被阅读23次

    1、maven无法自动下载


    image.png

    使用idea点击maven这个更新按钮不会自动下载的问题
    首先上私服地址上查看是否存在jar 发现存在的,然后在检查maven的settings.xml

     <mirror>
          <!--This sends everything else to /public -->
          <id>nexus</id>
          <mirrorOf>*</mirrorOf>
          <url>http://nexus.xxx.cn/nexus/content/groups/public/</url>
        </mirror>
    

    发现仓库地址也配置了但是怎么点击更新图标就是不下载

    2、解决
    在pom.xml加上仓库地址才可以更新下载 对于maven的settings.xml 只有执行mavn命令的时候才会生效

    <distributionManagement>
            <repository>
                <id>nexus</id>
                <name>Releases</name>
                <url>http://nexus.xxx.cn/nexus/content/repositories/releases/</url>
            </repository>
            <snapshotRepository>
                <id>nexus</id>
                <name>Snapshots</name>
                <url>http://nexus.xxx.cn/nexus/content/repositories/snapshots/</url>
            </snapshotRepository>
        </distributionManagement>
    

    相关文章

      网友评论

          本文标题:采坑记 idea mavn不下载问题排查

          本文链接:https://www.haomeiwen.com/subject/bzgccqtx.html