Do not think that you need to build SBT for Scala 2.10. I save my eclipse generation and eclipse generators in the global build.sbt file and it works for all my projects (or it seems so ;-)
I use Ubuntu, so when the SBT configuration files are saved on your computer, they can be different.
Create a folder called plugins in the hidden sbt directory. On Linux, this is in ~/.sbt (where the tilde is an alias for your home directory). So now you should have ~/.sbt/plugins
Then create a file called build.sbt in this directory and add the following to it:
resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/" resolvers += "Sonatype releases" at "https://oss.sonatype.org/content/repositories/releases/" addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.1.0") addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.2.0-SNAPSHOT")
To test, I just generated a Scala 2.10 project with it, and that seems fine.
Oh, the file above also adds support for the eclipse command in SBT if you want to generate Scala -IDE projects.
source share