Skip to content

Commit 288abd0

Browse files
Scopes scala dependencies as provided (#30)
1 parent 4b28d6c commit 288abd0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ lazy val compiler = (project in file("compiler"))
4646
scalacOptions -= "-Xfatal-warnings",
4747
libraryDependencies ++= Seq(
4848
"org.scala-exercises" %% "runtime" % V.runtime,
49-
"org.scala-lang" % "scala-compiler" % scalaVersion.value,
50-
"org.scala-lang.modules" %% "scala-collection-compat" % V.collectioncompat,
51-
"org.typelevel" %% "cats-core" % V.cats % Compile,
49+
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Provided,
50+
"org.scala-lang.modules" %% "scala-collection-compat" % V.collectioncompat % Provided,
51+
"org.typelevel" %% "cats-core" % V.cats % Compile,
5252
"org.http4s" %% "http4s-blaze-client" % V.http4s,
5353
"org.http4s" %% "http4s-circe" % V.http4s,
5454
"com.47deg" %% "github4s" % V.github4s,
5555
"org.scalariform" %% "scalariform" % V.scalariform,
56-
"org.typelevel" %% "cats-laws" % V.cats % Test,
57-
"org.scalatest" %% "scalatest" % V.scalatest % Test
56+
"org.typelevel" %% "cats-laws" % V.cats % Test,
57+
"org.scalatest" %% "scalatest" % V.scalatest % Test
5858
)
5959
)
6060
.dependsOn(definitions)

0 commit comments

Comments
 (0)