I am trying to use the following library in a game application: https://github.com/NET-A-PORTER/scala-uri
I added it to. /build.sbt as follows:
libraryDependencies ++= Seq(
"com.netaporter" %% "scala-uri" % "0.4.0",
...
However, I get the following errors:
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.typesafe.sbt
[warn] :: com.github.scct
[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
[error] unresolved dependency: com.github.scct
Any ideas on how to resolve this?
source
share