I am using ScalaIDE version 3.0.3-20140327-1716-Typesafe and I want to use Scala 2.9.x in my project.
I have configured a SBT project which use Scala 2.9.3 and created an Eclipse project :
$ sbt eclipse
After I imported it into Eclipse, I see following error:
The version of scala library found in the build path is incompatible with the one provided by scala IDE: 2.9.3. Expected: 2.10.4. Please replace the scala library with the scala container or a compatible scala library jar.
I then added scala-library 2.9.3 to the dependencies, still I get the same error:
$ cat build.sbt
name := "sample-project"
scalaVersion :="2.9.3"
version :="1.0"
libraryDependencies += "org.scala-lang" % "scala-library" % "2.9.3"
If I add Scala Nature from within Eclipse ( ScalaIDE ) then I get a different error:
More than one scala library found in the build path (/home/tuxdna/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.9.3.jar, /home/tuxdna/software/scala-ide-3.0.3/configuration/org.eclipse.osgi/bundles/290/1/.cp/lib/scala-library.jar).At least one has an incompatible version. Please update the project build path so it contains only compatible scala libraries.
How can I avoid these errors?
EDIT:
- I have added a workaround in my answer
- The project in question is this: mahout-scala-api-samples
Scala IDE is tied to a specific Scala version. In particular
For 2.9, you have to install 3.0.0, see http://scala-ide.org/download/current.html.