explicitly set source/target options for javac to 6 to avoid issues with proguard 4.4. fixes #208

This commit is contained in:
Mark Harrah 2011-10-01 14:39:40 -04:00
parent c9039a4d44
commit 38909d75ef
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,8 @@ object Sbt extends Build
publishArtifact in packageDoc := false,
scalaVersion := "2.9.1",
publishMavenStyle := false,
componentID := None
componentID := None,
javacOptions in Compile ++= Seq("-target", "6", "-source", "6")
)
lazy val myProvided = config("provided") intransitive;