Skip to content

Commit

Permalink
Use %%%
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Nov 15, 2022
1 parent 1c3a01a commit 357970d
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ ThisBuild / scalafixDependencies += "edu.gemini" %% "clue-ge
ThisBuild / scalafixScalaBinaryVersion := "2.13"
ThisBuild / ScalafixConfig / bspEnabled.withRank(KeyRanks.Invisible) := false

val schemasDependencies = List(
"org.scalameta" %% "munit" % munitVersion % Test,
"org.typelevel" %% "munit-cats-effect-3" % munitCatsEffectVersion % Test
)

lazy val root = tlCrossRootProject.aggregate(lucumaSchemas)

val templates =
Expand All @@ -40,11 +35,12 @@ val lucumaSchemas =
.settings(
moduleName := "lucuma-schemas",
libraryDependencies ++= Seq(
"edu.gemini" %% "clue-core" % clueVersion,
"edu.gemini" %% "lucuma-core" % lucumaCoreVersion,
"org.typelevel" %% "kittens" % kittensVersion
"edu.gemini" %%% "clue-core" % clueVersion,
"edu.gemini" %%% "lucuma-core" % lucumaCoreVersion,
"org.typelevel" %%% "kittens" % kittensVersion,
"org.scalameta" %%% "munit" % munitVersion % Test,
"org.typelevel" %%% "munit-cats-effect-3" % munitCatsEffectVersion % Test
),
libraryDependencies ++= schemasDependencies,
Compile / sourceGenerators += Def.taskDyn {
val root = (ThisBuild / baseDirectory).value.toURI.toString
val from = (templates / Compile / sourceDirectory).value
Expand Down

0 comments on commit 357970d

Please sign in to comment.