5

在尝试创建新的播放框架 2.3 应用程序时,我收到未解决依赖项的错误。我检查了存储库,但无法手动找到依赖项。

[error] (*:update) sbt.ResolveException: unresolved dependency: com.typesafe.play#build-link;2.3.0: not found
[error] unresolved dependency: com.typesafe.play#play-exceptions;2.3.0: not found
[error] unresolved dependency: com.typesafe.play#routes-compiler_2.10;2.3.0: not found
[error] unresolved dependency: com.typesafe#jse_2.10;1.0.0: not found
[error] unresolved dependency: com.typesafe#npm_2.10;1.0.0: not found
[error] unresolved dependency: com.typesafe#webdriver_2.10;1.0.0: not found

命令:

  • 激活器新应用 play-scala
  • 光盘应用
  • 激活器运行
4

1 回答 1

4

可以在这里找到解决方案。简而言之:

同样在这里。在我将第二个解析器添加到我的 project/plugins.sbt 后,依赖项已成功解析。

解析器 += “类型安全存储库”,位于“ http://repo.typesafe.com/typesafe/releases/

resolvers += "Typesafe repository mvn" at " http://repo.typesafe.com/typesafe/maven-releases/ "

结尾。

于 2014-06-01T20:45:46.987 回答