Skip to content

Commit

Permalink
Enable Java -Xlint warnings, excluding serialization-related ones
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaisorblade authored and harrah committed Jan 22, 2013
1 parent 92d7520 commit b0fe854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/Sbt.scala
Expand Up @@ -23,7 +23,7 @@ object Sbt extends Build
resolvers += Resolver.typesafeIvyRepo("releases"),
concurrentRestrictions in Global += Util.testExclusiveRestriction,
testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-w", "1"),
javacOptions in compile ++= Seq("-target", "6", "-source", "6")
javacOptions in compile ++= Seq("-target", "6", "-source", "6", "-Xlint", "-Xlint:-serial")
)

lazy val myProvided = config("provided") intransitive;
Expand Down

0 comments on commit b0fe854

Please sign in to comment.