Trying to add a scala -uri plugin to play back the framework

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#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

Any ideas on how to resolve this?

+3
source share
2 answers

Yuck, sorry. None of these should be runtime dependencies for scala-uri.

I just clicked the new version 0.4.1. Could you try to try? They no longer appear in the 0.4.1 pom file , unlike the 0.4.0 pom file , so I hope this solves your problem.

+3

-, , . , , com.github.scct#scct_2.10;0.3-SNAPSHOT. , , github, .

0

All Articles