mirror of https://github.com/sbt/sbt.git
explicitly set source/target options for javac to 6 to avoid issues with proguard 4.4. fixes #208
This commit is contained in:
parent
c9039a4d44
commit
38909d75ef
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue