Skip to content

Commit

Permalink
Don't use -Xsource:3 in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kyri-petrou committed Sep 30, 2024
1 parent 16b44cf commit 12a9f7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lazy val scala212 = "2.12.20"
lazy val scala213 = "2.13.15"
lazy val scala3 = "3.3.4"

lazy val scalaV = scala3
lazy val scalaV = scala213
lazy val allScalas = List("2.12", "2.13", "3.3")

inThisBuild(
Expand Down Expand Up @@ -120,6 +120,7 @@ lazy val docs = project
moduleName := "zio-query-docs",
scalacOptions -= "-Yno-imports",
scalacOptions -= "-Xfatal-warnings",
scalacOptions -= "-Xsource:3",
projectName := (ThisBuild / name).value,
mainModuleName := (zioQueryJVM / moduleName).value,
crossScalaVersions := Seq(scalaV),
Expand Down
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.5")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.1")

resolvers ++= Resolver.sonatypeOssRepos("public")

0 comments on commit 12a9f7e

Please sign in to comment.