pom文件引用的是CDH的jar包

而没有配置CDH的仓库 

导致maven找不到资源  ,依赖显示红色波浪,并且在仓库内生成了一堆.lastupdate文件

解决:

1. 删除本地仓库内所有的.lastupdate文件

2. pom文件内加入标签

<repositories>
<repository>
<id>cloudera</id>
<url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
</repository>
</repositories>

相关文章:

  • 2022-02-27
  • 2021-12-17
  • 2021-12-15
  • 2021-12-17
  • 2022-01-15
  • 2021-06-16
猜你喜欢
  • 2021-12-20
  • 2022-12-23
  • 2021-11-20
  • 2021-08-08
  • 2021-07-15
  • 2022-01-05
  • 2021-05-29
相关资源
相似解决方案