Hudson偶尔失败Maven2构建 - 缺少webdav

时间:2010-12-22 16:29:13

标签: java maven-2 hudson

我的Hudson构建每隔几周就会失败,我会收到此错误输出。当我删除整个.m2 \ repository \ org \ apache \ maven \ _wagon \ wagon-webdav目录并启动另一个没有依赖关系的构建时,它会解决问题几个星期。

我从未在哈德森之外看到这个错误。我在Maven 2.2.1和Hudson 1.378。

[INFO] Scanning for projects...
[INFO] artifact org.apache.maven.wagon:wagon-webdav: checking for updates from relrepo
[INFO] artifact org.apache.maven.wagon:wagon-webdav: checking for updates from central
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.

Missing:
----------
1) org.apache.maven.wagon:wagon-webdav:jar:RELEASE

  Try downloading the file manually from the project website.

  Then, install it using the command: 
      mvn install:install-file -DgroupId=org.apache.maven.wagon -DartifactId=wagon-webdav -Dversion=RELEASE -Dpackaging=jar -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there: 
      mvn deploy:deploy-file -DgroupId=org.apache.maven.wagon -DartifactId=wagon-webdav -Dversion=RELEASE -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency: 
    1) com.my-company-project:1.0-SNAPSHOT
    2) org.apache.maven.wagon:wagon-webdav:jar:RELEASE

3 个答案:

答案 0 :(得分:3)

您是否依赖RELEASE的工件版本?我不认为这是推荐的,它是少数几个实际上not supported in maven 3的功能之一。你能尝试一下特定的版本号吗?这也可以使您的构建更容易重现。

答案 1 :(得分:0)

升级到maven3并确保所有插件都是最新版本。插件和maven3中都存在许多间歇性/瞬态性问题。 hudson< - > m3问题可能尚未修复,因此您可能必须从插件开始。

答案 2 :(得分:0)

您可以尝试执行mvn install -U。但是我不完全确定这是否只影响SNAPSHOT版本。