0

我正在尝试使用 Cassandra Java 驱动程序。使用 Maven 构建时出现以下错误。

在此行找到多个注释:

- ArtifactTransferException: Failure to transfer org.apache.cassandra:cassandra-thrift:jar:1.2.3 from repo.maven.apache.org/maven2 was 
             cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could 
             not transfer artifact org.apache.cassandra:cassandra-thrift:jar:1.2.3 from/to central (h://repo.maven.apache.org/maven2): No response received after 
             60000
            - ArtifactTransferException: Failure to transfer com.github.stephenc.high-scale-lib:high-scale-lib:jar:1.1.2 from h://repo.maven.apache.org/
             maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original 
             error: Could not transfer artifact com.github.stephenc.high-scale-lib:high-scale-lib:jar:1.1.2 from/to central (h://repo.maven.apache.org/maven2): No 
             response received after 60000
            - ArtifactTransferException: Failure to transfer org.mortbay.jetty:jetty:jar:6.1.22 from h://repo.maven.apache.org/maven2 was cached in the 
             local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer 
             artifact org.mortbay.jetty:jetty:jar:6.1.22 from/to central (h://repo.maven.apache.org/maven2): No response received after 60000
            - ArtifactTransferException: Failure to transfer io.netty:netty:jar:3.6.3.Final from h://repo.maven.apache.org/maven2 was cached in the local 
             repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact 
             io.netty:netty:jar:3.6.3.Final from/to central (h://repo.maven.apache.org/maven2): No response received after 60000
            - ArtifactTransferException: Failure to transfer org.apache.cassandra:cassandra-all:jar:1.2.3 from h://repo.maven.apache.org/maven2 was 
             cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could 
             not transfer artifact org.apache.cassandra:cassandra-all:jar:1.2.3 from/to central (h://repo.maven.apache.org/maven2): No response received after 60000

任何人都可以建议,需要在 POM.xml 中添加什么。

  <dependencies>
    <dependency>
        <groupId>com.datastax.cassandra</groupId>
        <artifactId>cassandra-driver-core</artifactId>
        <version>1.0.0-beta2</version>
    </dependency>
    <dependency>
        <groupId>org.mortbay.jetty</groupId>
        <artifactId>jetty-util</artifactId>
        <version>6.1H.5-beta</version>
    </dependency>            
  </dependencies>
</project>
4

1 回答 1

1

我有类似的错误:

ArtifactTransferException: 从http://repo.maven.apache.org/maven2传输 commons-logging:commons-logging:jar:1.1.1 失败被缓存在本地仓库中,直到中央的更新间隔才会重新尝试解决已过期或强制更新。原始错误:无法将工件 commons-logging:commons-logging:jar:1.1.1 从/到中央传输(http://repo.maven.apache.org/maven2):在 60000 之后没有收到响应

我通过执行以下步骤解决了这个问题:

1.右键项目

2.转到Maven

3.点击“更新项目”

这解决了我的问题。希望它会帮助你。

于 2013-07-02T17:51:05.930 回答