Scope the targetting of code only to compiling code, instead of including things like javadoc generation (#632)

This commit is contained in:
Chris Stewart 2019-07-16 11:32:27 -05:00 committed by GitHub
parent 393a531f8a
commit 220d8d160e

View file

@ -66,7 +66,7 @@ lazy val commonSettings = List(
////
scalacOptions in Compile := compilerOpts,
scalacOptions in Test := testCompilerOpts,
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
Compile / compile / javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
//show full stack trace of failed tests
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-oF"),
//show duration of tests