I am using Intellij Idea 13.1.4. I have a scala sbt project. It is currently compiled with scala 2.10. I would like to change this to scala 2.11. In my build.sbt file, I have:
libraryDependencies ++= Seq( "org.scala-lang" % "scala-compiler" % "2.11.0", ... )
When I create my project, it is still built as a scala 2.10 project.
Also, under my Project Settings->Modules->Scala->Facet 'Scala'->Compiler library Intellij still shows scala-compiler-bundle:2.10.2 . There is no option for package 2.11.x How do I get an option for scala 2.11.x?
Thanks!
source share