From c6b891894e4778117998970c831c4490f61fea11 Mon Sep 17 00:00:00 2001 From: Ivan Topolnjak Date: Thu, 3 Jul 2014 14:51:04 -0300 Subject: = build: ensure that the java code is also targeted to Java 1.6 --- project/Settings.scala | 3 +++ 1 file changed, 3 insertions(+) (limited to 'project/Settings.scala') diff --git a/project/Settings.scala b/project/Settings.scala index 6cee3133..a441dc37 100644 --- a/project/Settings.scala +++ b/project/Settings.scala @@ -14,6 +14,9 @@ object Settings { scalaVersion := ScalaVersion, resolvers ++= Dependencies.resolutionRepos, fork in run := true, + javacOptions := Seq( + "-source", "1.6", "-target", "1.6" + ), scalacOptions := Seq( "-encoding", "utf8", -- cgit v1.2.3