Skip to content

Commit

Permalink
Merge pull request #146 from fd4s/remove-duplicates-pom
Browse files Browse the repository at this point in the history
Change to exclude duplicate dependencies in pom
  • Loading branch information
vlovgr authored Jan 21, 2020
2 parents 7c619f2 + 369b2fd commit 1454ba2
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ lazy val core = project
.settings(
moduleName := "vulcan",
name := moduleName.value,
dependencySettings,
dependencySettings ++ Seq(
libraryDependencies ++= Seq(
"org.apache.avro" % "avro" % avroVersion,
"org.typelevel" %% "cats-free" % catsVersion,
"org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided
)
),
publishSettings,
mimaSettings,
scalaSettings,
Expand Down Expand Up @@ -103,11 +109,6 @@ lazy val docs = project
.enablePlugins(BuildInfoPlugin, DocusaurusPlugin, MdocPlugin, ScalaUnidocPlugin)

lazy val dependencySettings = Seq(
libraryDependencies ++= Seq(
"org.apache.avro" % "avro" % avroVersion,
"org.typelevel" %% "cats-free" % catsVersion,
"org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided
),
libraryDependencies ++= Seq(
"org.typelevel" %% "discipline-scalatest" % "1.0.0-RC4",
"org.typelevel" %% "cats-testkit" % catsVersion,
Expand Down

0 comments on commit 1454ba2

Please sign in to comment.