Skip to content

Commit

Permalink
Merge pull request #67 from winitzki/feature/fix-scala3-syntax
Browse files Browse the repository at this point in the history
fix scala3 syntax
  • Loading branch information
winitzki authored Aug 22, 2024
2 parents e5da595 + 8c235de commit 834a7a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ lazy val chapter01 = (project in file("chapter01"))
unmanagedSources / excludeFilter ~= {
_ || new FileFilter { def accept(f: File) = ".*/worksheets/.*".r.pattern.matcher(f.getAbsolutePath).matches }
},
scalacOptions ++= Seq("-Xsource", "3.3.3"),
scalacOptions ++= Seq("-Xsource:3.3.3"),
scalaVersion := scalaV,
crossScalaVersions := Seq(scala2V, scala3V),
Test / parallelExecution := true,
Expand All @@ -35,7 +35,7 @@ lazy val chapter02 = (project in file("chapter02"))
def accept(f: File) = ".*/worksheets/.*".r.pattern.matcher(f.getAbsolutePath).matches
}
},
scalacOptions ++= Seq("-Xsource", "3.3.3"),
scalacOptions ++= Seq("-Xsource:3.3.3"),
scalaVersion := scalaV,
crossScalaVersions := Seq(scala2V, scala3V),
Test / parallelExecution := true,
Expand Down

0 comments on commit 834a7a3

Please sign in to comment.