【发布时间】:2014-02-23 04:04:30
【问题描述】:
我正在尝试在我的游戏应用程序中使用以下库:https://github.com/NET-A-PORTER/scala-uri
我已将其添加到 ./build.sbt 中,如下所示:
libraryDependencies ++= Seq(
"com.netaporter" %% "scala-uri" % "0.4.0",
...
但是我收到以下错误:
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.typesafe.sbt#sbt-pgp;0.8.1: not found
[warn] :: com.github.scct#scct_2.10;0.3-SNAPSHOT: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn]
[warn] Note: Some unresolved dependencies have extra attributes. Check that these dependencies exist with the requested attributes.
[warn] com.typesafe.sbt:sbt-pgp:0.8.1 (sbtVersion=0.13, scalaVersion=2.10)
[warn]
[trace] Stack trace suppressed: run last *:update for the full output.
[error] (*:update) sbt.ResolveException: unresolved dependency: com.typesafe.sbt#sbt-pgp;0.8.1: not found
[error] unresolved dependency: com.github.scct#scct_2.10;0.3-SNAPSHOT: not found
关于如何解决这个问题的任何想法?
【问题讨论】:
-
我知道这对你没有帮助,但我绝对建议不要使用 SCCT 而是使用 Scoverage:github.com/scoverage/sbt-scoverage
标签: scala playframework playframework-2.0 sbt scala-2.10