Skip to content

Commit

Permalink
Specify scala versions as regular deps
Browse files Browse the repository at this point in the history
Co-authored-by: Arman Bilge <[email protected]>
  • Loading branch information
valencik and armanbilge committed Oct 28, 2023
1 parent 78304d4 commit a49681e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ lazy val root = (project in file("."))

lazy val phantomDependencies = project
.settings(
crossScalaVersions := Seq("2.13.10", "3.1.1"),
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-core" % "2.9.0",
"org.typelevel" %%% "cats-effect" % "3.5.1",
"org.scalameta" %%% "munit" % "0.7.29" % Test,
"org.typelevel" %%% "munit-cats-effect-3" % "1.0.7" % Test
"org.typelevel" %%% "munit-cats-effect-3" % "1.0.7" % Test,
"org.scala-lang" % "scala-library" % "2.13.10",
"org.scala-lang" % "scala3-library_3" % "3.1.0"
),
)

0 comments on commit a49681e

Please sign in to comment.