Skip to content

Commit 3ae1d4b

Browse files
committed
Minimize change
1 parent ab6de5e commit 3ae1d4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ ThisBuild / scalaVersion := "2.13.14"
1010
// alias is the way to go, now you can do: sbt runMy
1111
addCommandAlias("runMy", "core / Compile / run")
1212

13-
lazy val macros = project in file("macros") settings(
13+
lazy val macros = (project in file("macros")).settings(
1414
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
1515
)
1616

17-
lazy val core = project in file("core") dependsOn macros
17+
lazy val core = (project in file("core")) dependsOn macros

0 commit comments

Comments
 (0)