3

我们使用archiva和maven很长时间了。到目前为止一切正常。一位新开发人员在我们公司开始工作,当他尝试设置他的环境时,他得到了这个错误:

13:41:50  [ERROR] Failed to execute goal on project our_project-util: Could not resolve dependencies for project net.corpintra.our_project:our_project-util:jar:2012.1: Failed to collect dependencies for [net.corpintra.our_project:our_project-mda:pom:2012.1 (runtime?), commons-beanutils:commons-beanutils:jar:1.8.3 (compile), org.jboss.logging:jboss-logging:jar:3.1.1.GA (compile), commons-lang:commons-lang:jar:2.6 (compile), com.jcraft:jsch:jar:0.1.38 (compile), org.quartz-scheduler:quartz:jar:2.1.0 (compile), aspectj:aspectjrt:jar:1.5.3 (compile), jboss:jboss-j2ee:jar:4.2.2.GA (provided), commons-net:commons-net:jar:1.4.1 (compile), org.apache.commons:commons-compress:jar:1.3 (compile), org.apache.commons:commons-exec:jar:1.1 (compile), org.codehaus.xfire:xfire-core:jar:1.2.6 (compile), org.codehaus.xfire:xfire-aegis:jar:1.2.6 (compile), org.apache.activemq:activemq-all:jar:5.5.0 (compile), org.apache.activemq:activemq-pool:jar:5.5.0 (compile), net.corpintra.client.util:rar:jar:1.1 (compile), org.bouncycastle:bcprov-jdk15on:jar:1.47 (compile), org.bouncycastle:bcpg-jdk15on:jar:1.47 (compile), com.lowagie:itext:jar:2.1.7 (compile), commons-io:commons-io:jar:2.0.1 (compile), log4j:log4j:jar:1.2.16 (compile)]: Failed to read artifact descriptor for org.andromda.profiles.uml2:andromda-profile:xml.zip:3.4-SNAPSHOT: Could not transfer artifact org.andromda:andromda:pom:3.4-20120529.073812-11 from/to archiva.default (http://svn.ssc-services.de/archiva/repository/internal/): Failed to transfer file: http://svn.ssc-services.de/archiva/repository/internal/org/andromda/andromda/3.4-SNAPSHOT/andromda-3.4-20120529.073812-11.pom. Return code is: 500, ReasonPhrase:Unable to fetch artifact resource.. -> [Help 1]
13:41:50  [ERROR] 
13:41:50  [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
13:41:50  [ERROR] Re-run Maven using the -X switch to enable full debug logging.
13:41:50  [ERROR] 
13:41:50  [ERROR] For more information about the errors and possible solutions, please read the following articles:
13:41:50  [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
13:41:50  [ERROR] 
13:41:50  [ERROR] After correcting the problems, you can resume the build with the command
13:41:50  [ERROR]   mvn <goals> -rf :our_project-util

我们使用档案作为本地存储库。Archiva 包含所有外部项目和我们内部的东西。如果新开发者从我这里得到一个 .m2 的 repo,一切都很好。如果他删除我的 .m2 存储库,他会得到同样的错误。如果我删除我的存储库,也会发生同样的情况。

他的 settings.xml 看起来像这样:

<settings>
    <mirrors>
        <mirror>
            <id>archiva.default</id>
            <url>http://svn.our_company.com/archiva/repository/internal/</url>
            <mirrorOf>*</mirrorOf>
        </mirror>
    </mirrors>
    <profiles>
            [... some profile stuff ...]
    </profiles>
</settings>

有谁知道这个问题并且可以告诉我如何解决它?

4

1 回答 1

0

嗯。基于给定的错误消息

Return code is: 500, ReasonPhrase:Unable to fetch artifact resource.. -> [Help 1]

这意味着内部服务器错误您在访问存档时遇到问题...您是否尝试通过浏览器访问给定的工件?

于 2012-06-26T06:08:57.340 回答