We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab6de5e commit 3ae1d4bCopy full SHA for 3ae1d4b
build.sbt
@@ -10,8 +10,8 @@ ThisBuild / scalaVersion := "2.13.14"
10
// alias is the way to go, now you can do: sbt runMy
11
addCommandAlias("runMy", "core / Compile / run")
12
13
-lazy val macros = project in file("macros") settings(
+lazy val macros = (project in file("macros")).settings(
14
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
15
)
16
17
-lazy val core = project in file("core") dependsOn macros
+lazy val core = (project in file("core")) dependsOn macros
0 commit comments