1

私のbuild.sbtファイル(sbtバージョンは0.13.8):

lazy val commonSettings = Seq(
  version := "1.0.0",
  scalaVersion := "2.11.6"
)

resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"

lazy val root = (project in file(".")).
  settings(commonSettings: _*).
  settings(
    name := "myapp",
    libraryDependencies ++= Seq(
      "com.typesafe.play" % "play-json" % "2.3.4",
      "org.scalatest" % "scalatest_2.11" % "2.2.4" % "test",
      "junit" % "junit" % "4.12" % "test"
    )
  )

scalacOptions ++= Seq("-unchecked", "-feature", "-deprecation")

プロジェクトをコンパイルしようとすると、次のエラーが発生します。

[trace] Stack trace suppressed: run last *:update for the full output.
[error] (*:update) sbt.ResolveException: unresolved dependency: com.typesafe.play#play-json_2.11;2.3.4: not found
[error] Total time: 0 s, completed Apr 17, 2015 5:59:28 PM

この play-json ライブラリを私の 用に入手するにはどうすればよいscala 2.11.6ですか?

4

2 に答える 2

6

使用する scala バージョンを sbt に伝える必要があります。

明示的にすることができます:

"com.typesafe.play" % "play-json_2.11" % "2.3.4",

または、次のように%%( sbt doc ) を使用して、sbt に使用するように指示しますscalaVersion

"com.typesafe.play" %% "play-json" % "2.3.4",
于 2015-04-17T18:29:16.427 に答える
4

のすべてcom.typesafe.playplay-jsonバージョンはここで見ることができます。2.3.4バージョンはありません。2.4.0-M3代わりに使用してみてください。

"com.typesafe.play" %% "play-json" % "2.4.0-M3"

依存関係を解決するために double %%soscalaVersionが適切に使用されていることに注意してください。

于 2015-04-17T17:19:51.737 に答える