A module I am using must have been compiled with Java 1.7, and I only have 1.6.
If I want to for the module to be compiled for a specific version like 1.6, how can I set
Adding
javacOptions ++= Seq("-source", "1.6", "-target", "1.6")
to the build.sbt file worked for me (to be transparent, in my case it was 1.7 to build with JDK 8).