Configuring Scala Compiler Options in sbt
When the Scala compiler emits warnings like deprecation notices, you need to pass compiler flags to see the details. The solution is to configure scalacOptions in your sbt build. Session-Only Configuration During an interactive sbt session, add options temporarily: set scalacOptions += “-deprecation” This applies only to the current session and is lost after reload…
