We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85accd7 commit a8195a0Copy full SHA for a8195a0
1 file changed
src/main/scala/com/ossuminc/sbt/helpers/Scala3.scala
@@ -7,7 +7,7 @@ import java.net.URI
7
8
object Scala3 extends AutoPluginHelper {
9
10
- private lazy val scala_3_options: Seq[String] =
+ lazy val scala_3_options: Seq[String] =
11
Seq(
12
"-deprecation",
13
"-feature",
@@ -68,7 +68,7 @@ object Scala3 extends AutoPluginHelper {
68
project
69
.settings(
70
scalaVersion := version.getOrElse("3.3.7"),
71
- scalacOptions := scala_3_options ++ scala3Options,
+ scalacOptions ++= scala_3_options ++ scala3Options,
72
Compile / doc / scalacOptions := scala_3_doc_options(
73
(Compile / scalaVersion).value,
74
projectName,
0 commit comments