Skip to content

Commit 8bde32f

Browse files
committed
Merge pull request #1 from xuwei-k/fix-scalacOptions
fix scalacOptions
2 parents 1e83d4d + 87a4542 commit 8bde32f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/ScalaModulePlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ object ScalaModulePlugin extends Plugin {
1111
partestVersion := "1.0-RC5",
1212
organization := "org.scala-lang.modules",
1313
// don't use for doc scope, scaladoc warnings are not to be reckoned with
14-
scalacOptions in compile ++= Seq("-optimize", "-Xfatal-warnings", "-feature", "-deprecation", "-unchecked", "-Xlint"),
14+
scalacOptions in (Compile, compile) ++= Seq("-optimize", "-Xfatal-warnings", "-feature", "-deprecation", "-unchecked", "-Xlint"),
1515
// Generate $name.properties to store our version as well as the scala version used to build
1616
resourceGenerators in Compile <+= Def.task {
1717
val props = new java.util.Properties

0 commit comments

Comments
 (0)