Skip to content

Commit

Permalink
Fix library conflict in migration tool
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed May 22, 2020
1 parent 34ccc6d commit 4ebfaab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,10 @@ lazy val thehiveMigration = (project in file("migration"))
scopt,
specs % Test
),
dependencyOverrides += "org.locationtech.spatial4j" % "spatial4j" % "0.6",
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 4ebfaab

Please sign in to comment.