From 87a4542b6a7c9565141937e8513de0e66c4001b0 Mon Sep 17 00:00:00 2001 From: xuwei-k <6b656e6a69@gmail.com> Date: Tue, 22 Oct 2013 16:19:07 +0900 Subject: [PATCH] fix scalacOptions --- src/main/scala/ScalaModulePlugin.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/ScalaModulePlugin.scala b/src/main/scala/ScalaModulePlugin.scala index e13fb8f..6dd31c1 100644 --- a/src/main/scala/ScalaModulePlugin.scala +++ b/src/main/scala/ScalaModulePlugin.scala @@ -11,7 +11,7 @@ object ScalaModulePlugin extends Plugin { partestVersion := "1.0-RC5", organization := "org.scala-lang.modules", // don't use for doc scope, scaladoc warnings are not to be reckoned with - scalacOptions in compile ++= Seq("-optimize", "-Xfatal-warnings", "-feature", "-deprecation", "-unchecked", "-Xlint"), + scalacOptions in (Compile, compile) ++= Seq("-optimize", "-Xfatal-warnings", "-feature", "-deprecation", "-unchecked", "-Xlint"), // Generate $name.properties to store our version as well as the scala version used to build resourceGenerators in Compile <+= Def.task { val props = new java.util.Properties