更新某个jar包都是LastUpdate

项目一直报错:某个jar包没有,配置正确而且网络也正常,猜想可能是该版本的jar包在中央仓库没有,于是找了个有该版本的jar包的中央仓库。
在setting.xml中配置

<mirror>
    <mirror>
      <id>mirrorIdid>
      <mirrorOf>repositoryIdmirrorOf>
      <name>Human Readable Name for this Mirror.name>
      <url>http://mvnrepository.com/url>
    mirror>
  mirrors>

重新Update Project,果然可以了。
听说有个下载速度很快的,阿里云的。

<mirrors>
    <mirror>
      <id>alimavenid>
      <mirrorOf>centralmirrorOf>
      <name>aliyun mavenname>
      <url>http://maven.aliyun.com/nexus/content/groups/public/url>        
    mirror>
  mirrors>

你可能感兴趣的:(lastupdate,中央仓库,maven,中央仓库配置,淘淘商城遇见的问题)