2015-05-19 4 views
0
[warn] :::::::::::::::::::::::::::::::::::::::::::::: 
[warn] ::   UNRESOLVED DEPENDENCIES   :: 
[warn] :::::::::::::::::::::::::::::::::::::::::::::: 
[warn] :: com.typesafe.play#sbt-plugin;2.4.0: not found 
[warn] :::::::::::::::::::::::::::::::::::::::::::::: 
[warn] 
[warn] Note: Some unresolved dependencies have extra attributes. Check that these dependencies exist with the requested attributes. 
[warn]  com.typesafe.play:sbt-plugin:2.4.0 (scalaVersion=2.10, sbtVersion=0.13) 

Это мой plugins.sbt:Play обновление до 2.4, но не удалось извлечь SBT-плагин

resolvers ++= Seq(
    "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/", 
    "Typesafe Snapshots" at "http://repo.typesafe.com/typesafe/snapshots/", 
    "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/" 
) 

// The Play plugin 

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.0") 

ответ

1

Play Framework 2.4 еще не доступны, однако вы можете использовать релиз-кандидат. Для последних выпусков отметьте Play Frameworkgithub home page.

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.0-RC5")

Edit: Play Framework 2.4 теперь доступен.