maven报错was cached in the local repository

maven报错:
Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project mtsystem: Execution default-resources of goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources failed: Plugin org.apache.maven.plugins:maven-resources-plugin:3.2.0 or one of its dependencies could not be resolved: Failure to find org.eclipse.aether:aether-util:jar:0.9.0.M2 in http://IP地址/repository/myself_group/ was cached in the local repository, resolution will not be reattempted until the update interval of nexus has elapsed or updates are forced

重要的是:was cached in the local repository, resolution will not be reattempted until the update interval of nexus has elapsed or updates are forced

解决方案:(三选一)

1、将本地对应的Jar包仓库目录删掉,重新install生成新的。
2、命令行下使用 -U 强制抓取更新:

mvn -U clean install

在这里插入图片描述
3、在maven的setting配置文件中updatepolicy改为always
在这里插入图片描述

<profiles>
    <profile>
      ...
      <repositories>
        <repository>
          <id>nexus</id>
          <name>nexus repository</name>
          <url>http://ip:port/repository/myself_group/</url>  
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatepolicy>always</updatepolicy>
            <checksumpolicy>warn</checksumpolicy>
          </snapshots>
         </repository>
      </repositories>
      ...
    </profile>
  </profiles>

方案三选一即可,建议使用第二种,简单省事。

  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值