maven打包,报:Failed to collect dependencies at org.codehaus.xfire:xfire-java5:jar:1.2.6

解决Maven项目中因xfire-annotations版本不匹配导致的构建失败问题。通过手动修改本地Maven仓库中的pom文件,将版本号从3.2.2-zy-SNAPSHOT修正为1.2.6。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

报错信息:

[ERROR] Failed to execute goal on project ks-cms-web: Could not resolve dependencies for project com.founder.cms:ks-cms-web:war:3.2.2-zy-SNAPSHOT: Failed to collect dependencies at org.codehaus.xfire:xfire-java5:jar:1.2.6 -> org.codehaus.xfire:xfire-annotations:jar:3.2.2-zy-SNAPSHOT: Failed to read artifact descriptor for org.codehaus.xfire:xfire-annotations:jar:3.2.2-zy-SNAPSHOT: Could not transfer artifact org.codehaus.xfire:xfire-annotations:pom:3.2.2-zy-SNAPSHOT from/to codehaus (http://dist.codehaus.org/): Cannot access http://dist.codehaus.org/ with type legacy using the available connector factories: BasicRepositoryConnectorFactory: Cannot access http://dist.codehaus.org/ with type legacy using the available layout factories: Maven2RepositoryLayoutFactory: Unsupported repository layout legacy -> [Help 1]

分析依赖,xfire-annotations:jar版本应该是1.2.6,错误分析成了工程已定义版本。

解决办法:

去maven本地库中找到  xfire-java5-1.2.6.pom

我的本地路径:

/home/maven-rep/repository/org/codehaus/xfire/xfire-java5/1.2.6

修改pom文件

 <dependency>
      <groupId>org.codehaus.xfire</groupId>
      <artifactId>xfire-annotations</artifactId>\
      <version>1.2.6</version>
    </dependency>

强制加上version,再打包,通过。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值