Skip to content

Commit 0515194

Browse files
committed
add "-deprecation" scalacOption in order to see details deprecation messages if there are any
- currently building example project produces warning: there were 5 deprecation warnings; re-run with -deprecation for details
1 parent 281caac commit 0515194

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

build.sbt

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ lazy val root = project
55
description := "Example sbt project that compiles using Scala 3",
66
version := "0.1.0",
77
scalaVersion := "3.1.3",
8+
scalacOptions ++= Seq("-deprecation"),
89
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test
910
)

0 commit comments

Comments
 (0)