Reputation: 839
I have problem with pushing example app to heroku cloud. I did everything like I read here: http://www.playframework.com/documentation/2.1.0/ProductionHeroku
Unfortunately I got error: http://pastebin.com/N7N2JCDY
Any idea how to make it work?
I would add I saw: Unresolved dependency SBT org.scala-sbt#sbt_2.9.1;0.12.1: not found, Play examples
It didn't help.
Upvotes: 1
Views: 2269
Reputation: 1929
Try changing the version of your play plugin in project/plugins.sbt
addSbtPlugin("play" % "sbt-plugin" % "2.1.3")
2.1.3 is the latest release, I dont see a 2.0 in
http://repo.typesafe.com/typesafe/ivy-releases/play/sbt-plugin/scala_2.9.2/sbt_0.12/
Upvotes: 3