maven问题汇总

server/2024/12/23 6:07:13/


1、报错 failed to transfer from http://0.0.0.0/ during a previous attempt.

com.byd.xxx:xxx-parent:pom:1.1.0-SNAPSHOT failed to transfer from http://0.0.0.0/ during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of maven-default-http-blocker has elapsed or updates are forced. Original error: Could not transfer artifact com.byd.xxx:xxx-parent:pom:1.1.0-SNAPSHOT from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [xxxrepo (http://hub.byd.com:9081/repository/maven-xxx-snapshot/, default, releases+snapshots), xxx (http://hub.byd.com:9081/repository/maven-xxx-snapshot, default, releases+snapshots)]

Since Maven 3.8.1 http repositories are blocked.

新版本maven 不支持http问题,通过在settings.xml增加如下内容即可解决:

<mirror><id>maven-default-http-blocker</id><mirrorOf>external:http:*</mirrorOf><name>Pseudo repository to mirror external repositories initially using HTTP.</name><url>http://0.0.0.0/</url>
</mirror>

其中url写成实际的地址:例如:http://hub.byd.com:9081/repository/maven-xxx-snapshot/

​2、为什么springboot的pom文件中有的依赖不用加版本号,有的依赖却必须加

应为springboot中引入了一个父依赖,其中包含了一些依赖的版本号,这些依赖不需要添加版本,而有一些依赖并不在父依赖的版本中,这些依赖需要添加版本。
在这里插入图片描述


http://www.ppmy.cn/server/6521.html

相关文章

【CVPR2023】《A2J-Transformer:用于从单个RGB图像估计3D交互手部姿态的锚点到关节变换网络

这篇论文的标题是《A2J-Transformer: Anchor-to-Joint Transformer Network for 3D Interacting Hand Pose Estimation from a Single RGB Image》&#xff0c;作者是Changlong Jiang, Yang Xiao, Cunlin Wu, Mingyang Zhang, Jinghong Zheng, Zhiguo Cao, 和 Joey Tianyi Zhou…

即插即用的涨点模块之变体卷积(Ghost卷积)详解及代码,可应用于检测、分割、分类等各种算法领域

目录 前言 一、GhostConv结构 二、GhostConv计算流程 三、GhostConv参数 四、代码详解 前言 GhostNet: More Features from Cheap Operations 来源&#xff1a;CVPR2020 官方代码&#xff1a;https://github.com/huawei-noah/ghostnet Ghost 模块是一种针对卷积神经网络…

设计模式学习笔记 - 开源实战一(下):通过剖析JDK源码学习灵活应用设计模式

概述 上篇文章我们讲解了工厂模式、建造者模式、适配器模式适配器模式在 JDK 中的应用&#xff0c;其中 Calendar 类用到了工厂模式和建造者模式&#xff0c; Collections 类用到了装饰器模式和适配器模式。学习的重点是让你了解&#xff0c;在真实的项目中模式的实现和应用更…

怎样把pandas.core.frame.DataFrame数据写入excel文件?

要将pandas的DataFrame数据写入Excel文件&#xff0c;可以使用pandas提供的to_excel方法。 首先&#xff0c;安装pandas库&#xff08;如果尚未安装&#xff09;&#xff1a; pip install pandas然后&#xff0c;导入pandas库&#xff1a; import pandas as pd接下来&#x…

AI大模型催生App「通胀」

AI工具独立开发者「Alchain花生」最近做了一个小测试。在GPT Store上&#xff0c;他把自己开发的一款用户数5000的GPT&#xff08;模拟Claude 3 Opus&#xff09;调成了付费模式&#xff0c;想看看海外用户是否真有更高的付费意愿。 6小时后&#xff0c;他获得了第一笔用户打款…

企业数据分析的维度一般有哪些?

​在很多场景下&#xff0c;都会进行企业的一个分析&#xff0c;来反应我们的问题。常见的需要分析企业数据的场景有&#xff1a;业务优化&#xff08;月度季度&#xff09;&#xff0c;需要做投资决策时&#xff0c;有融资需求&#xff0c;或者战略上出现了改变时&#xff0c;…

STM32 CAN接收FIFO细节

STM32 CAN接收FIFO细节 简介 CAN外设一共有2个接收FIFO&#xff0c;每个FIFO中有3个邮箱&#xff0c;即最多可以缓存6个接收到的报文。 FIFO状态 EMPTY: 初始状态&#xff0c;表示FIFO为空&#xff0c;没有挂起的消息&#xff08;FMP0x00&#xff09;&#xff0c;且没有发生…

【IoTDB 线上小课 02】开源增益的大厂研发岗面经

还有友友不知道我们的【IoTDB 视频小课】系列吗&#xff1f; 关于 IoTDB&#xff0c;关于物联网&#xff0c;关于时序数据库&#xff0c;关于开源...给我们 5 分钟&#xff0c;持续学习&#xff0c;干货满满~ 5分钟学会 大厂研发岗面试 之前的第一期小课&#xff0c;我们听了 I…