enable deprecation warnings
This commit is contained in:
parent
dcc57c7117
commit
6d7687c33f
|
|
@ -18,7 +18,8 @@ lazy val root = (project in file(".")).settings(
|
||||||
unmanagedResourceDirectories in Compile += { baseDirectory.value / "lib" }
|
unmanagedResourceDirectories in Compile += { baseDirectory.value / "lib" }
|
||||||
scalacOptions ++= List(
|
scalacOptions ++= List(
|
||||||
"-Yrangepos",
|
"-Yrangepos",
|
||||||
"-Ywarn-unused"
|
"-Ywarn-unused",
|
||||||
|
"-deprecation"
|
||||||
)
|
)
|
||||||
javacOptions += "-g:none"
|
javacOptions += "-g:none"
|
||||||
compileOrder := CompileOrder.JavaThenScala
|
compileOrder := CompileOrder.JavaThenScala
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue