2015-09-08 49 views
1

我試圖將我的播放應用程序從版本2.3.10遷移到2.4(我使用Java)。我遵循播放主頁上的遷移指南,但是發生了sbt錯誤。我到目前爲止所做的: - 將build.sbt中的scala版本更改爲2.11.6 - 將plug version.sbt中的play版本更改爲2.4.0 - 將build.properties中的sbt.version更改爲0.13。 8播放2.4遷移sbt錯誤

的build.sbt刷新我碰到下面的錯誤後:

java.lang.RuntimeException: No project '...' in 'file:/...'.Valid project IDs: root 
at scala.sys.package$.error(package.scala:27) 
at sbt.Load$$anonfun$checkAll$2$$anonfun$apply$13.apply(Load.scala:370) 
at sbt.Load$$anonfun$checkAll$2$$anonfun$apply$13.apply(Load.scala:365) 
at scala.collection.immutable.List.foreach(List.scala:318) 
at sbt.Load$$anonfun$checkAll$2.apply(Load.scala:365) 
at sbt.Load$$anonfun$checkAll$2.apply(Load.scala:365) 
at scala.collection.TraversableLike$WithFilter$$anonfun$foreach$1.apply(TraversableLike.scala:772) 
at scala.collection.immutable.Map$Map1.foreach(Map.scala:109) 
at scala.collection.TraversableLike$WithFilter.foreach(TraversableLike.scala:771) 
at sbt.Load$.checkAll(Load.scala:365) 
at sbt.Load$.loadURI(Load.scala:290) 
at sbt.Load$.load(Load.scala:285) 
at sbt.Load$.load(Load.scala:276) 
at sbt.Load$.apply(Load.scala:130) 
at sbt.Load$.defaultLoad(Load.scala:36) 
at sbt.BuiltinCommands$.doLoadProject(Main.scala:481) 
at sbt.BuiltinCommands$$anonfun$loadProjectImpl$2.apply(Main.scala:475) 
at sbt.BuiltinCommands$$anonfun$loadProjectImpl$2.apply(Main.scala:475) 
at sbt.Command$$anonfun$applyEffect$1$$anonfun$apply$2.apply(Command.scala:58) 
at sbt.Command$$anonfun$applyEffect$1$$anonfun$apply$2.apply(Command.scala:58) 
at sbt.Command$$anonfun$applyEffect$2$$anonfun$apply$3.apply(Command.scala:60) 
at sbt.Command$$anonfun$applyEffect$2$$anonfun$apply$3.apply(Command.scala:60) 
at sbt.Command$.process(Command.scala:92) 
at sbt.MainLoop$$anonfun$1$$anonfun$apply$1.apply(MainLoop.scala:98) 
at sbt.MainLoop$$anonfun$1$$anonfun$apply$1.apply(MainLoop.scala:98) 
at sbt.State$$anon$1.process(State.scala:184) 
at sbt.MainLoop$$anonfun$1.apply(MainLoop.scala:98) 
at sbt.MainLoop$$anonfun$1.apply(MainLoop.scala:98) 
at sbt.ErrorHandling$.wideConvert(ErrorHandling.scala:17) 
at sbt.MainLoop$.next(MainLoop.scala:98) 
at sbt.MainLoop$.run(MainLoop.scala:91) 
at sbt.MainLoop$$anonfun$runWithNewLog$1.apply(MainLoop.scala:70) 
at sbt.MainLoop$$anonfun$runWithNewLog$1.apply(MainLoop.scala:65) 
at sbt.Using.apply(Using.scala:24) 
at sbt.MainLoop$.runWithNewLog(MainLoop.scala:65) 
at sbt.MainLoop$.runAndClearLast(MainLoop.scala:48) 
at sbt.MainLoop$.runLoggedLoop(MainLoop.scala:32) 
at sbt.MainLoop$.runLogged(MainLoop.scala:24) 
at sbt.StandardMain$.runManaged(Main.scala:53) 
at sbt.xMain.run(Main.scala:28) 
at xsbt.boot.Launch$$anonfun$run$1.apply(Launch.scala:57) 
at xsbt.boot.Launch$.withContextLoader(Launch.scala:77) 
at xsbt.boot.Launch$.run(Launch.scala:57) 
at xsbt.boot.Launch$$anonfun$explicit$1.apply(Launch.scala:45) 
at xsbt.boot.Launch$.launch(Launch.scala:65) 
at xsbt.boot.Launch$.apply(Launch.scala:16) 
at xsbt.boot.Boot$.runImpl(Boot.scala:32) 
at xsbt.boot.Boot$.main(Boot.scala:21) 
at xsbt.boot.Boot.main(Boot.scala) 

看來,SBT無法找到子項目,但我不知道我可以解決這個錯誤。順便說一下,應用程序在2.3.10上無縫工作。

我希望有人能幫助我!提前致謝。

回答

0

嘗試將這些添加到plugins.sbt file;

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

// The Play plugin 
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.3") 

我建議你使用2.4.3如果你要升級你的Play版本,它應該是最新的。此外,按照這guideline,比你應該沒事。