Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ThijsBroersen committed Oct 6, 2024
1 parent e89a1ef commit 974cde0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import BuildHelper._

welcomeMessage

ThisBuild / scalaVersion := Scala213

inThisBuild(
List(
organization := "dev.zio",
Expand Down Expand Up @@ -439,7 +441,8 @@ lazy val docs = projectMatrix
ScalaUnidoc / unidoc / unidocProjectFilter :=
inProjects(
Seq(zioConfig, zioConfigTypesafe, zioConfigDerivation, zioConfigYaml, zioConfigRefined, zioConfigMagnolia)
.flatMap(_.filterProjects(Seq(VirtualAxis.jvm))).map(_.project): _*
.flatMap(_.filterProjects(Seq(VirtualAxis.jvm, VirtualAxis.scalaVersionAxis(Scala213, ""))))
.map(_.project): _*
)
)
.settings(macroDefinitionSettings)
Expand Down
2 changes: 0 additions & 2 deletions project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,6 @@ object BuildHelper {
resolvers +=
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
name := s"$prjName",
crossScalaVersions := Seq(Scala212, Scala213),
ThisBuild / scalaVersion := Scala213,
scalacOptions ++= stdOptions ++ extraOptions(scalaVersion.value, optimize = !isSnapshot.value),
libraryDependencies ++= {
if (scalaVersion.value == Scala3)
Expand Down

0 comments on commit 974cde0

Please sign in to comment.