Skip to content

Commit

Permalink
Move scala-compiler and scala-reflect dependencies to the `Provid…
Browse files Browse the repository at this point in the history
…ed` scope
  • Loading branch information
jcazevedo committed Nov 1, 2018
1 parent 535b7a7 commit eb8fa6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions macros/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import Dependencies._
name := "pureconfig-macros"

libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % scalaVersion.value,
"org.scala-lang" % "scala-reflect" % scalaVersion.value)
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Provided,
"org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided)

developers := List(
Developer("ruippeixotog", "Rui Gonçalves", "[email protected]", url("https://github.com/ruippeixotog")))
1 change: 1 addition & 0 deletions modules/generic/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Dependencies._
name := "pureconfig-generic"

libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided,
shapeless)

osgiSettings
Expand Down

0 comments on commit eb8fa6d

Please sign in to comment.