How to “re-run with -deprecation for details” in sbt?
sbt shell While in sbt shell (if you don’t want to change your build.sbt): $ sbt > set ThisBuild/scalacOptions ++= Seq(“-unchecked”, “-deprecation”) > compile > exit Due to in ThisBuild, set applies the settings to all sub-projects, as well. Command Line You could also run the above as a single command on command line. sbt … Read more