これらのコンパイルエラーが発生しました。それは他のプロジェクトでは使用されていますが、他のプロジェクトでは使用されていません。何か案は? (私はすでに、 "キャッシュ/再起動を無効に" 試してみた)play 2.3.10とScala 2.11.8
warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.typesafe.play#play-test_2.11;2.3.0: not found
[warn] :: com.typesafe.play#play_2.11;2.3.0: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[trace] Stack trace suppressed: run last *:update for the full output.
[error] (*:update) sbt.ResolveException: unresolved dependency: com.typesafe.play#play-test_2.11;2.3.0: not found
[error] unresolved dependency: com.typesafe.play#play_2.11;2.3.0: not found
[error] Total time: 4 s, completed Aug 22, 2017 5:09:59 PM
私build.sbtは次のとおりです。
lazy val app = project.in(file("."))
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
json,
"org.scalatestplus" %% "play" % "1.2.0" % "test"
)
私plugins.sbtは次のとおりです。私の推測から
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.10")
はあなたが見ることができます依存関係を持っている新しいバージョンにアップデートより良い場合
resolvers += "typesafe" at "http://repo.typesafe.com/typesafe/maven-releases/"
us build.sbtファイル – HamuelScala 2.11の最新2.3.xリリースは2.3.11です:http://search.maven.org/#artifactdetails%7Ccom.typesafe.play%7Cplay_2.11%7C2.3.10%7Cjar (2.5.xまたはイベントを2.6.xにアップグレードすることをお勧めします) – cchantep