maven系列--Could not resolve dependencies问题的解决

时间:2022-01-07 05:02:55

一、问题描述

1.1 问题背景

  在调用这两个第三方包时,

  1. import com.google.gson.JsonObject;
  2. import com.google.gson.JsonParser;

需要在maven的pom.xml文件中添加依赖。由于其他原因前后共添加了两个关于Json的依赖,如下:
1.<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>1.5-20090211</version>
</dependency>

2.<!--json-lib -->
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
</dependency>

  所以在执行

mvn clean package

命令时报错。

1.2 详细描述

  报错信息截图如下:
  maven系列--Could not resolve dependencies问题的解决

二、原因分析

  Could not resolve dependencies for project for cn.edu.sdut.softlab.YZYWeiXin:YZYWeiXin:war 。。。
  重点:Failure to find org.json:json:jar:… …in https://… … was cached in the local repository ,resolution will not reattempt util the update interval of central has elapsed or updates are forced.
  个人理解就是maven的本地仓库已经有了两个版本或者说是两种json依赖,maven无法决定使用哪一个,导致报错了。

三、问题解决

3.1 查看本地.m2仓库下json的情况

  如下图所示,共有两个版本的json依赖。
maven系列--Could not resolve dependencies问题的解决

3.2 删掉其中一个json

  问题就很容易解决了,删掉其中一个或者全部删掉再重新下载都可以。

四、问题延展

  记得去年遇到另一种依赖下载出错的情况,大体是已经下载到即Cached到本地仓库的某个依赖是错误的,导致出错,具体详情参见本人两一篇博客:
http://blog.csdn.net/qq_33429968/article/details/53438712