Closed lazovik closed 9 years ago
javacOptions ++= Seq("-source", "1.6", "-target", "1.6"), javacOptions in doc := Seq("-source", "1.6"),
This does not work if you do not have java source files, for the scala compiler itself you need to add: scalacOptions += "-target:jvm-1.7", // enforce java7
javacOptions ++= Seq("-source", "1.6", "-target", "1.6"), javacOptions in doc := Seq("-source", "1.6"),