Reputation: 619
I'm trying to setup scalatra to work with app engine using this template: https://github.com/mtkopone/sbt-scalatra-appengine-template and instructions in Readme. After entering sbt in terminal I get this error:
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED DEPENDENCIES ::
::::::::::::::::::::::::::::::::::::::::::::::
:: org.scala-tools.sbt#sbt_2.9.1;0.7.4: not found
::::::::::::::::::::::::::::::::::::::::::::::
I'm using xubuntu 11.10. Is there any solution?
Upvotes: 0
Views: 306
Reputation: 55028
Your project/build.properties
is forcing SBT to use version 0.7.4
.
Either download and use an older version of SBT that is compatible with the template, or try to modify the build for SBT 0.11.
Upvotes: 1