0

の依存関係に関するエラーを解決できないため、spay.io の例を試すことはできませんbuild.sbt。これがどのように見えるかです:

//....skipped

resolvers += "spray repo" at "http://repo.spray.io"

libraryDependencies += "io.spray" % "spray-can" % "1.0"

ただし、エラーが発生します。

[info] Resolving io.spray#spray-can;1.0 ...
[warn]  module not found: io.spray#spray-can;1.0
[warn] ==== local: tried
[warn]   /home/alex/.ivy2/local/io.spray/spray-can/1.0/ivys/ivy.xml
[warn] ==== Typesafe Repository: tried
[warn]   http://repo.typesafe.com/typesafe/releases/io/spray/spray-can/1.0/spray-can-1.0.pom
[warn] ==== spray repo: tried
[warn]   http://repo.spray.io/io/spray/spray-can/1.0/spray-can-1.0.pom
[warn] ==== public: tried
[warn]   http://repo1.maven.org/maven2/io/spray/spray-can/1.0/spray-can-1.0.pom
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  ::          UNRESOLVED DEPENDENCIES         ::
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  :: io.spray#spray-can;1.0: not found
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
sbt.ResolveException: unresolved dependency: io.spray#spray-can;1.0: not found
    //..................................... skipped
[error] (*:update) sbt.ResolveException: unresolved dependency: io.spray#spray-can;1.0: not found

バージョンを 1.1 に変更しても、同じエラーが発生します。

それの何がいけないの?

4

1 に答える 1

1

1.0ドキュメント(およびレポの閲覧)によると、まだスプレーのバージョンはありません:スプレー - 現在のバージョンを参照してください。

最新のものは1.0-M7、scala 2.9.2 または1.1-M7scala 2.10.0-RC5 用のようです。

于 2013-06-08T15:28:43.480 に答える