mirror of https://github.com/sbt/sbt.git
Disable -Xlint for scalac. Too many 'Adapting argument list by creating a 2-tuple' warnings.
This commit is contained in:
parent
aa93f43381
commit
7a3a8bb50b
|
|
@ -23,8 +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", "-Xlint", "-Xlint:-serial"),
|
||||
scalacOptions += "-Xlint"
|
||||
javacOptions in compile ++= Seq("-target", "6", "-source", "6", "-Xlint", "-Xlint:-serial")
|
||||
)
|
||||
|
||||
lazy val myProvided = config("provided") intransitive;
|
||||
|
|
|
|||
Loading…
Reference in New Issue