我试图在我的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依赖项,但它不起作用...有人知道如何解决这个问题吗?谢谢。
发布于 2013-05-25 21:23:35
您还必须签出Playn: mvn的threerings分支,并在该项目上启动https://github.com/threerings/playn全新安装。
发布于 2013-06-17 05:58:58
我创建了一个包含此依赖项的maven存储库,
请随意使用它
<repositories>
<repository>
<id>bubuntux-repo</id> <!--Contains PlayN and Tripleplay snapshots-->
<url>http://repository-bubuntux.forge.cloudbees.com/snapshot/</url>
</repository>
</repositories>请记住,这个工件是来自Threerings存储库的spanshot,而我的CI不运行任何测试单元,它只是编译,所以这个库可能有点不稳定。
https://stackoverflow.com/questions/16673684
复制相似问题