Skip to content

Commit

Permalink
Merge pull request #107 from typelevel/agg-phantom
Browse files Browse the repository at this point in the history
Aggregate phantomDependencies in root project
  • Loading branch information
valencik authored Oct 28, 2023
2 parents e58f1c2 + a49681e commit 18aa438
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ ThisBuild / githubWorkflowJavaVersions := Seq(PrimaryJava, LTSJava)
// See http://www.foundweekends.org/giter8/testing.html#Using+the+Giter8Plugin for more details.
lazy val root = (project in file("."))
.enablePlugins(ScriptedPlugin)
.aggregate(phantomDependencies)
.settings(
name := "typelevel.g8",
Test / test := {
Expand All @@ -36,11 +37,12 @@ lazy val root = (project in file("."))

lazy val phantomDependencies = project
.settings(
crossScalaVersions := Seq("2.13.10", "3.1.1"),
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-core" % "2.9.0",
"org.typelevel" %%% "cats-effect" % "3.5.1",
"org.scalameta" %%% "munit" % "0.7.29" % Test,
"org.typelevel" %%% "munit-cats-effect-3" % "1.0.7" % Test
"org.typelevel" %%% "munit-cats-effect-3" % "1.0.7" % Test,
"org.scala-lang" % "scala-library" % "2.13.10",
"org.scala-lang" % "scala3-library_3" % "3.1.0"
),
)

0 comments on commit 18aa438

Please sign in to comment.