Skip to content

Commit

Permalink
Merge pull request #137 from eikek/cross-build-scala2-3
Browse files Browse the repository at this point in the history
Remove the experimental tasty-reader for scala 2
  • Loading branch information
eikek authored Jun 16, 2021
2 parents 1660cf4 + 3ba5512 commit a22eb34
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 @@ -36,7 +36,7 @@ val sharedSettings = Seq(
"-Ywarn-value-discard"
)
else if (scalaBinaryVersion.value.startsWith("2.13"))
List("-Werror", "-Wdead-code", "-Wunused", "-Wvalue-discard", "-Ytasty-reader")
List("-Werror", "-Wdead-code", "-Wunused", "-Wvalue-discard")
else if (scalaBinaryVersion.value.startsWith("3"))
List(
"-explain",
Expand Down Expand Up @@ -214,6 +214,7 @@ val root = project
.settings(sharedSettings)
.settings(noPublish)
.settings(
name := "calev-root"
name := "calev-root",
crossScalaVersions := Nil
)
.aggregate(coreJVM, coreJS, fs2JVM, fs2JS, doobieJVM, circeJVM, circeJS, akkaJVM)

0 comments on commit a22eb34

Please sign in to comment.