[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
Missing:
----------
1) org.hibernate:hibernate-core:jar:4.0.0.FINAL
...
from the specified remote repositories:
central (http://repo1.maven.org/maven2),
spring-milestone (http://maven.springframework.org/milestone),
Hibernate (http://repository.jboss.org/nexus/content/groups/public/)
を構築しかし、同じポンポンとリポジトリ/依存関係は、私の地元のdevのビルドで問題なく動作します。 Jenkinsはubuntuボックスにあり、他のすべての依存関係は正常に機能しています。私のJavaホームは/usr/lib/jvm/java-7-openjdk-i386
に設定されており、Jenkinsの最新バージョンに更新しました。ジェンキンスは
私はresolv.conf私は新しいHibernateのjarファイルをダウンロードするJBossのリポジトリを使用しています。この(私はresolvconfパッケージを使用して、それを編集した)
GNU nano 2.2.6 File: /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 8.8.8.8
のように見え、それはPOMにそうように定義されています
<repository>
<id>Hibernate</id>
<name>JBoss Hibernate repository</name>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
私も達人/ジェンキンスからの警告を取得:
[WARNING]
************ WARNING ************
This Maven runtime contains a LifecycleExecutor component with an incomplete configuration.
LifecycleExecutor class: org.apache.maven.lifecycle.LifecycleExecutorInterceptor
Missing component requirement: org.apache.maven.ConfigurationInterpolator
NOTE: This seems to be a third-party Maven derivative you are using. If so, please
notify the developers for this derivative project of the problem. The Apache Maven team is not
responsible for maintaining the integrity of third-party component overrides.
多分キャッシュの問題? UbuntuボックスとJBossリポジトリの間にプロキシがありますか? – tobiasbayer