zoukankan      html  css  js  c++  java
  • eclipse maven项目错误

    eclipse maven项目错误:Failure to transfer org.codehaus.plexus:plexus-interpolation:jar:1.15 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.codehaus.plexus:plexus-interpolation:jar:1.15 from/to central (http://repo.maven.apache.org/maven2): The operation was cancelled.pom.xml

    解决办法:删除掉下载失败的jar

    find ~/.m2 -name "*.lastUpdated" -exec grep -q "Could not transfer" {} ; -print -exec rm {} ;

    windows下:

    cd %userprofile%.m2 epository

    for /r %i in (*.lastUpdated) do del %i

    然后在项目中右键选择 Maven->UpdateDependencies.

    或者右键:Maven -> Disable maven nature

    然后右键:Configure > Convert to maven Project

  • 相关阅读:
    T-SQL查询语句
    数据库和表的管理
    数据库概念
    IRF2实验
    IFR2笔记
    校园网双网出口实验案例
    双机热备实验
    华为H3C(NAT)实验
    BGP(边界网关协议)实验
    Hybrid实验
  • 原文地址:https://www.cnblogs.com/zhaoyan001/p/6128768.html
Copyright © 2011-2022 走看看