I have setup an Android project through sbt (0.13.1) in IDEA 13.0.2. It is mixed Java 7 and Scala 2.10.3. It uses the SBT support in IDEA.
Even though in my build.sbt I have the following:
scalacOptions += "-target:jvm-1.7"
javacOptions ++= Seq("-source", "1.7", "-target", "1.7")
here is the result when I make the project with IDEA:
java: javacTask: source release 1.7 requires target release 1.7
Any help please?