From e8b0a664d6f2e287844661f23014d91ef020539e Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 25 Aug 2011 11:27:19 -0700 Subject: [PATCH] Specify that we want to 1.6-compatible class files. I'm building with 1.7 these days. w00t! --- build.sbt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ae26c3b..ebaa46e 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,9 @@ organization := "com.samskivert" crossPaths := false -javacOptions ++= Seq("-Xlint", "-Xlint:-serial") +javacOptions ++= Seq( + "-Xlint", "-Xlint:-serial", "-source", "1.6", "-target", "1.6" +) autoScalaLibrary := false // no scala-library dependency