IntelliJ未更新到依赖项的正确版本

zf9nrax1  于 2022-09-20  发布在  其他
关注(0)|答案(1)|浏览(172)

我正在使用IntelliJ旗舰版2022.1。我有以下pom.file:

....
  </build>
  <dependencies>
    <dependency>
      <groupId>io.dexi</groupId>
      <artifactId>webi-common-rest-service</artifactId>
      <version>1.15.61</version>
    </dependency>
  </dependencies>
</project>

我已经从终端和IntelliJ运行了命令mvn clean install。为了检查我是否拥有正确的库版本,我运行命令mvn dependency:tree,结果如下:

[INFO] +- io.dexi:webi-common-rest-service:jar:1.15.61:compile
[INFO] |  +- com.squareup.retrofit2:retrofit:jar:2.4.0:compile
[INFO] |  |  - com.squareup.okhttp3:okhttp:jar:3.10.0:compile
[INFO] |  +- com.squareup.okio:okio:jar:1.13.0:compile

它检索库的正确版本(1.15.61)。但当我在IntelliJ中打开该库的文件时,它默认为错误的版本,如下所示:

我试图将IntelliJ更新到最新版本并下载最新补丁,但问题仍然存在。

此外,我还尝试使缓存无效并重新启动IntelliJ。不管我做了什么,这个IntelliJ都没有显示正确的版本库。

wlwcrazw

wlwcrazw1#

我通过与IntelliJ一起降级解决了这个问题。适用于我的版本是:IntelliJ 2019.1.4

我希望IntelliJ解决了这个问题,因为使用旧版本并不理想。

相关问题