From e72decad9251ea2c31e7e53dbfc9902f0f922194 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Wed, 25 Feb 2015 20:37:01 -0500 Subject: [PATCH] Use -source 1.6 for now, to avoid Java 8 syntactic sugar We will still be able to use library types, but will keep it a little easier to make a Java 7 branch this way. --- config/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/build.sbt b/config/build.sbt index 2acc2ae7..afaaaba7 100644 --- a/config/build.sbt +++ b/config/build.sbt @@ -22,7 +22,7 @@ findbugsMaxMemory := 1000 jacoco.settings -javacOptions in (Compile, compile) ++= Seq("-source", "1.8", "-target", "1.8", "-g") +javacOptions in (Compile, compile) ++= Seq("-source", "1.6", "-target", "1.8", "-g") // because we test some global state such as singleton caches, // we have to run tests in serial.