2015-01-13 11 views
5

Dal aggiungendo:dipendenza irrisolta con specs2 scalaz-stream 0.5a

"org.specs2" %% "specs2" % "2.4.15" % "test" withSources() withJavadoc(), 

Per il mio file di compilazione ottengo

[warn] Note: Unresolved dependencies path: 
[warn]  org.scalaz.stream:scalaz-stream_2.10:0.5a 
[warn]  +- org.specs2:specs2_2.10:2.4.15 
... 
[error] (*:update) sbt.ResolveException: unresolved dependency: org.scalaz.stream#scalaz-stream_2.10;0.5a: not found 

risposta

10

Aggiunta repository Scalaz dovrebbe aiutare

resolvers += "Scalaz Bintray Repo" at "https://dl.bintray.com/scalaz/releases" 

upd utilizzare https

+2

Non dovresti mai mai impostare "scalaz-bintray" in "http://dl.bintray.com/scalaz/releases" nella tua build. Ti apre per creare attacchi di iniezione incrociati. Utilizza solo https per aggiungere un repository alla tua build. – droidlabour

Problemi correlati