From 4187c46611aa3179dcfb023209046284ddae93ec Mon Sep 17 00:00:00 2001 From: Maxim Sukharev Date: Thu, 21 Feb 2019 14:41:07 +0100 Subject: [PATCH] update enry to v1.7.1 it fixes segfault on macOs Mojave Signed-off-by: Maxim Sukharev --- build.sbt | 3 ++- project/Dependencies.scala | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ca0f83aa..09518470 100644 --- a/build.sbt +++ b/build.sbt @@ -17,6 +17,7 @@ libraryDependencies ++= Seq( fixNewerHadoopClient % Provided, //due to newer v. of guava scalaLib % Compile, + bblfshClient % Compile, scalapb % Compile, ioGrpc % Compile, scalapbGrpc % Compile, @@ -32,9 +33,9 @@ libraryDependencies ++= Seq( log4j12 % Compile, log4jBinding % Compile, commonsMath % Compile, - bblfshClient % Compile, avro % Compile, parquetAvro % Compile, + enry % Compile, scalaJsonParser % Compile //needed for docFreq reading //TODO(bzz): remove scalaJsonParser at https://github.com/src-d/gemini/issues/112 ) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 5bb1ebe2..97b9198e 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -33,4 +33,5 @@ object Dependencies { lazy val bblfshClient = "org.bblfsh" % "bblfsh-client" % "1.8.2" lazy val scalaJsonParser = "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.6.7" lazy val gcs = "com.google.cloud.bigdataoss" % "gcs-connector" % "hadoop2-1.9.11" + lazy val enry = "tech.sourced" % "enry-java" % "1.7.1" }