我的编程空间,编程开发者的网络收藏夹
学习永远不晚

maven下载依赖失败问题如何解决

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

maven下载依赖失败问题如何解决

这篇“maven下载依赖失败问题如何解决”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“maven下载依赖失败问题如何解决”文章吧。

    1. 问题1

    描述

    This failure was cached in the local repository and resolution is not reattempted until the update interval of aliyunmaven has elapsed or updates are forced

    详细

    [INFO] Scanning for projects...
    [INFO] ------------------------------------------------------------------------
    [INFO] Detecting the operating system and CPU architecture
    [INFO] ------------------------------------------------------------------------
    [INFO] os.detected.name: windows
    [INFO] os.detected.arch: x86_64
    [INFO] os.detected.classifier: windows-x86_64
    [INFO]
    [INFO] -------< org.apache.pulsar:kafka-connect-avro-converter-shaded >--------
    [INFO] Building Apache Pulsar :: Kafka Connect Avro Converter shaded 2.8.0
    [INFO] --------------------------------[ jar ]---------------------------------
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time:  1.415 s
    [INFO] Finished at: 2021-10-21T09:22:45+08:00
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal on project kafka-connect-avro-converter-shaded: Could not resolve dependencies for project org.apache.pulsar:kafka-connect-avro-converter-shaded:jar:2.8.0: Failed to collect dependencies at io.confluent:kafka-connect-avro-converter:jar:5.3.2: Failed to read artifact descriptor for io.confluent:kafka-connect-avro-converter:jar:5.3.2: io.confluent:kafka-schema-registry-parent:pom:5.3.2 was not found in https://maven.aliyun.com/repository/public during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of aliyunmaven has elapsed or updates are forced -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

    2. 问题2

    描述

    Could not find artifact io.confluent:kafka-connect-avro-converter:jar:5.3.2 in aliyunmaven
    The POM for io.confluent:kafka-connect-avro-converter:jar:5.3.2 is missing, no dependency information available

    详细

    [INFO] Scanning for projects...
    [INFO] ------------------------------------------------------------------------
    [INFO] Detecting the operating system and CPU architecture
    [INFO] ------------------------------------------------------------------------
    [INFO] os.detected.name: windows
    [INFO] os.detected.arch: x86_64
    [INFO] os.detected.classifier: windows-x86_64
    [INFO]
    [INFO] -------< org.apache.pulsar:kafka-connect-avro-converter-shaded >--------
    [INFO] Building Apache Pulsar :: Kafka Connect Avro Converter shaded 2.8.0
    [INFO] --------------------------------[ jar ]---------------------------------
    [WARNING] The POM for io.confluent:kafka-connect-avro-converter:jar:5.3.2 is missing, no dependency information available
    Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/io/confluent/kafka-connect-avro-converter/5.3.2/kafka-connect-avro-converter-5.3.2.jar
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time:  2.427 s
    [INFO] Finished at: 2021-10-21T10:39:36+08:00
    [INFO] ------------------------------------------------------------------------
    [WARNING] The requested profile "confluent" could not be activated because it does not exist.
    [ERROR] Failed to execute goal on project kafka-connect-avro-converter-shaded: Could not resolve dependencies for project org.apache.pulsar:kafka-connect-avro-converter-shaded:jar:2.8.0: Could not find artifact io.confluent:kafka-connect-avro-converter:jar:5.3.2 in aliyunmaven (https://maven.aliyun.com/repository/public) -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

    3. 原因分析

    虽然阿里云不存在这个jar包,但我们手动放到了maven的本地库中,重新打包后还是提示抄不到pom文件。

    如下:

    maven下载依赖失败问题如何解决

    猜测可能是lastUpdate的问题,但是删除后仍然不能成功。

    经过各种尝试,下面方法可行。

    4. 解决办法

    删除_remote.repositories和pom文件。

    4.1 原始状态

    目录文件:

    maven下载依赖失败问题如何解决

    错误日志:

    [WARNING] The requested profile "confluent" could not be activated because it does not exist.
    [ERROR] Failed to execute goal on project kafka-connect-avro-converter-shaded: Could not resolve dependencies for project org.apache.pulsar:kafka-connect-avro-converter-shaded:jar:2.8.0: io.confluent:kafka-connect-avro-converter:jar:5.3.2 was not found in https://maven.aliyun.com/repository/public during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of aliyunmaven has elapsed or updates are forced -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

    4.2 删除_remote.repositories

    目录结构:

    maven下载依赖失败问题如何解决

    错误日志:

    [WARNING] The requested profile "confluent" could not be activated because it does not exist.
    [ERROR] Failed to execute goal on project kafka-connect-avro-converter-shaded: Could not resolve dependencies for project org.apache.pulsar:kafka-connect-avro-converter-shaded:jar:2.8.0: Failed to collect dependencies at io.confluent:kafka-connect-avro-converter:jar:5.3.2: Failed to read artifact descriptor for io.confluent:kafka-connect-avro-converter:jar:5.3.2: io.confluent:kafka-schema-registry-parent:pom:5.3.2 was not found in https://maven.aliyun.com/repository/public during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of aliyunmaven has elapsed or updates are forced -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

    4.3 删除pom文件

    目录结构:

    maven下载依赖失败问题如何解决

    错误日志:

    [INFO] Replacing original artifact with shaded artifact.
    [INFO] Replacing F:\code\tmp\pulsar\kafka-connect-avro-converter-shaded\target\kafka-connect-avro-converter-shaded.jar with F:\code\tmp\pulsar\kafka-connect-avro-converter-shaded\target\kafka-connect-avro-converter-shaded-2.8.0-shaded.jar
    [INFO] Dependency-reduced POM written at: F:\code\tmp\pulsar\kafka-connect-avro-converter-shaded\dependency-reduced-pom.xml
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time:  12.882 s
    [INFO] Finished at: 2021-10-21T16:21:55+08:00
    [INFO] ------------------------------------------------------------------------
    [WARNING] The requested profile "confluent" could not be activated because it does not exist.

    以上就是关于“maven下载依赖失败问题如何解决”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网行业资讯频道。

    免责声明:

    ① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

    ② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

    maven下载依赖失败问题如何解决

    下载Word文档到电脑,方便收藏和打印~

    下载Word文档

    猜你喜欢

    maven下载依赖失败问题如何解决

    这篇“maven下载依赖失败问题如何解决”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“maven下载依赖失败问题如何解决”文
    2023-07-06

    maven下载依赖失败问题及解决

    这篇文章主要介绍了maven下载依赖失败问题及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-05-16

    maven冲突依赖问题如何解决

    Maven冲突依赖问题可以通过以下方法解决:使用`mvn dependency:tree`命令查看项目的依赖树,找到冲突的依赖项。使用``标签排除冲突的依赖项。在项目的pom.xml文件中,找到引起冲突的依赖项,然后添加``标签来排除其中的
    2023-10-27

    maven循环依赖问题如何解决

    Maven循环依赖问题可以通过以下几种方式解决:1. 重新设计项目结构:循环依赖通常是由于项目结构设计不合理引起的。可以重新考虑项目的模块划分,将相关的功能模块放在同一个模块下,减少模块之间的依赖关系。2. 提取公共模块:如果多个模块之间存
    2023-09-17

    maven依赖问题如何排查

    在排查Maven依赖问题时,可以尝试以下几个步骤:1. 检查pom.xml文件:首先检查项目的pom.xml文件,确保依赖项正确地被添加到了标签中,并且没有任何拼写错误或者格式错误。2. 清理本地仓库:有时候Maven本地仓库中的依赖可能损
    2023-09-17

    解决IDEA中Maven下载依赖包过慢或报错的问题

    IDEA中Maven下载依赖包过慢或报错时,可尝试采取以下措施:检查网络连接是否稳定。更新Maven设置,增加内存分配。配置阿里云的Maven镜像。使用代理连接互联网时,在IDEA中配置代理。禁用或更改Maven下载器。验证本地Maven仓库。禁用Maven项目分析。更新IDEA和Maven版本,禁用可能干扰的插件。
    解决IDEA中Maven下载依赖包过慢或报错的问题
    2024-04-02

    导入SpringCloud依赖失败如何解决

    这篇“导入SpringCloud依赖失败如何解决”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“导入SpringCloud依赖
    2023-07-06

    使用Gradle打依赖包失败的问题及解决

    这篇文章主要介绍了使用Gradle打依赖包失败的问题及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-05-15

    idea maven依赖引入失效无法正常导入依赖问题的解决方法

    有时候idea导入一个新项目,或者pom文件修改(新增)了依赖,pom文件和代码会报红,提示依赖包不存在,下面这篇文章主要给大家介绍了关于idea maven依赖引入失效无法正常导入依赖问题的解决方法,需要的朋友可以参考下
    2023-05-16

    maven依赖${xxx.version}报错问题怎么解决

    这篇文章主要介绍“maven依赖${xxx.version}报错问题怎么解决”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“maven依赖${xxx.version}报错问题怎么解决”文章能帮助大家解
    2023-06-26

    idea下载maven依赖包报错怎么解决

    idea下载maven依赖包报错可能是由于网络连接问题、仓库地址错误、依赖冲突等原因造成的。解决方法如下:检查网络连接:首先确认网络连接是否正常,可以尝试使用浏览器或命令行工具访问仓库地址,查看是否能下载依赖包。检查仓库地址:检查maven
    idea下载maven依赖包报错怎么解决
    2024-04-08

    如何解决Maven依赖冲突

    今天小编给大家分享的是如何解决Maven依赖冲突,相信很多人都不太了解,为了让大家更加了解,所以给大家总结了以下内容,一起往下看吧。一定会有所收获的哦。目录背景处理回顾背景在项目中screw-core依赖时发生了冲突,控制台指出是log4j
    2023-07-06

    maven循环依赖如何解决

    Maven循环依赖是指两个或多个模块之间相互依赖的情况,导致编译和构建过程中出现问题。为了解决 Maven 循环依赖问题,可以尝试以下几种方法:重新设计项目结构:重新审视项目的依赖关系,尝试对模块进行合理划分,避免出现循环依赖的情况。在父模
    maven循环依赖如何解决
    2024-04-08

    编程热搜

    • Python 学习之路 - Python
      一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
      Python 学习之路 - Python
    • chatgpt的中文全称是什么
      chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
      chatgpt的中文全称是什么
    • C/C++中extern函数使用详解
    • C/C++可变参数的使用
      可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
      C/C++可变参数的使用
    • css样式文件该放在哪里
    • php中数组下标必须是连续的吗
    • Python 3 教程
      Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
      Python 3 教程
    • Python pip包管理
      一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
      Python pip包管理
    • ubuntu如何重新编译内核
    • 改善Java代码之慎用java动态编译

    目录