0

我正在尝试在我的 Eclipse (https://github.com/threerings/tripleplay)中运行三重播放示例,但它在安装过程中总是给我带来同样的错误:

Failed to execute goal on project tripleplay: Could not resolve dependencies for project com.threerings:tripleplay:jar:1.8-SNAPSHOT: The following artifacts could not be resolved: com.googlecode.playn:playn-core:jar:1.8-SNAPSHOT, com.googlecode.playn:playn-java:jar:1.8-SNAPSHOT: Failure to find com.googlecode.playn:playn-core:jar:1.8-SNAPSHOT in http://forplay.googlecode.com/svn/mavenrepo was cached in the local repository, resolution will not be reattempted until the update interval of forplay-legacy has elapsed or updates are forced

我已经强制更新 maven 依赖项,但它没有用......有人知道如何解决这个问题吗?谢谢。

4

2 回答 2

0

我创建了一个包含此依赖项的 Maven 存储库,

随意使用它

<repositories>
  <repository>
     <id>bubuntux-repo</id> <!--Contains PlayN and Tripleplay snapshots-->
     <url>http://repository-bubuntux.forge.cloudbees.com/snapshot/</url>
   </repository>
</repositories>

请记住,这个工件是来自 Threerings 存储库的快照,我的 CI 不运行任何测试单元,它只是编译,所以库可能有点不稳定。

于 2013-06-16T21:58:57.607 回答
0

您还必须检查 Playn 的threerings fork: https ://github.com/threerings/playn 并在该项目上启动 mvn clean install。

于 2013-05-25T13:23:35.017 回答