Skip to content

Commit

Permalink
Fix recursive lazy value errors
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Jun 12, 2023
1 parent 060d187 commit 59401c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ object Build {
import Deps._

// format: off
lazy val compilerPlugins = List(nscPlugin, junitPlugin)
lazy val compilerPlugins: List[MultiScalaProject] = List(nscPlugin, junitPlugin)
lazy val publishedMultiScalaProjects = compilerPlugins ++ List(
nir, util, tools,
nativelib, clib, posixlib, windowslib,
Expand Down Expand Up @@ -110,7 +110,7 @@ object Build {
)

// Compiler plugins
lazy val nscPlugin = MultiScalaProject("nscplugin", file("nscplugin"))
lazy val nscPlugin: MultiScalaProject = MultiScalaProject("nscplugin", file("nscplugin"))
.settings(
compilerPluginSettings,
scalacOptions ++= scalaVersionsDependendent(scalaVersion.value)(
Expand Down

0 comments on commit 59401c8

Please sign in to comment.