Now that you have updated your answer with your "build.sbt" file, it is rather clear what is happening: your application has "org.scalaj" % "scalaj-http_2.9.2" % "0.3.7"
as a dependency.
You are forcing the scala version for "scalaj", meaning that you will (transitively) get scala 2.9.2 pulled in your classpath, in addition to scala 2.10.2.
To avoid this, do not force the scala version in your dependencies, but let sbt infer it from your project's scala version, by using the %%
operator instead of %
(just like you did for your other dependencies):
"org.scalaj" %% "scalaj-http" % "0.3.9"
Note that I have upgraded the library version to 0.3.9 as it is apparently the first version to be available for scala 2.10.