GeekDaddy
GeekDaddy

Reputation: 619

Can't get sbt to work with scalatra template for google app engine

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

Answers (1)

retronym
retronym

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

Related Questions