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

报错信息:

[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文件

 
      org.codehaus.xfire
      xfire-annotations\
      1.2.6
    

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

你可能感兴趣的:(maven,maven)