From 994d897b5b3e018ba00ff86901e22068daeaf0f8 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Thu, 9 Mar 2017 17:03:44 +0900 Subject: [PATCH] (refs #1485)Update scalac options to use "-opt:_" --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index c896330ee..d219ff3a2 100644 --- a/build.sbt +++ b/build.sbt @@ -59,7 +59,7 @@ libraryDependencies ++= Seq( ) // Compiler settings -scalacOptions := Seq("-deprecation", "-language:postfixOps", "-Ydelambdafy:method", "-target:jvm-1.8") +scalacOptions := Seq("-deprecation", "-language:postfixOps", "-opt:_") javacOptions in compile ++= Seq("-target", "8", "-source", "8") javaOptions in Jetty += "-Dlogback.configurationFile=/logback-dev.xml"