Skip to content

Commit

Permalink
#1369 Fix library conflict for migration
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed May 27, 2020
1 parent e422580 commit e0df894
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ libraryDependencies in ThisBuild ++= {
case _ => compilerPlugin(macroParadise) :: Nil
}
}
dependencyOverrides in ThisBuild ++= Seq(
"org.locationtech.spatial4j" % "spatial4j" % "0.6",
"org.elasticsearch.client" % "elasticsearch-rest-client" % "6.7.2"
)
PlayKeys.includeDocumentationInBinary := false
milestoneFilter := ((milestone: Milestone) => milestone.title.startsWith("4"))

Expand Down Expand Up @@ -311,10 +315,6 @@ lazy val thehiveMigration = (project in file("migration"))
scopt,
specs % Test
),
dependencyOverrides ++= Seq(
"org.locationtech.spatial4j" % "spatial4j" % "0.6",
"org.elasticsearch.client" % "elasticsearch-rest-client" % "6.7.2"
),
fork := true,
normalizedName := "migrate",
mainClass := None
Expand Down

0 comments on commit e0df894

Please sign in to comment.