From 4ebfaabe9606f3cf6e5ccae61b33511d362c0704 Mon Sep 17 00:00:00 2001 From: To-om Date: Fri, 22 May 2020 18:39:42 +0200 Subject: [PATCH] Fix library conflict in migration tool --- build.sbt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 638d6db807..dfe08182dd 100644 --- a/build.sbt +++ b/build.sbt @@ -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