From 34a958e0a4ee9b18adfbba44e0300fefa0ff1882 Mon Sep 17 00:00:00 2001 From: Oguzhan Unlu Date: Fri, 30 Oct 2020 19:39:00 +0300 Subject: [PATCH] Beam: Add missing tcnative dependency of Scio 0.9.5 (close #389) --- build.sbt | 1 + project/Dependencies.scala | 2 ++ 2 files changed, 3 insertions(+) diff --git a/build.sbt b/build.sbt index 0dd1566b0..5982d1978 100644 --- a/build.sbt +++ b/build.sbt @@ -161,6 +161,7 @@ lazy val beam = buildInfoPackage := "com.snowplowanalytics.snowplow.enrich.beam.generated", libraryDependencies ++= Seq( Dependencies.Libraries.scio, + Dependencies.Libraries.tcnative, Dependencies.Libraries.beam, Dependencies.Libraries.sentry, Dependencies.Libraries.slf4j, diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 727a67c9a..528bbdb41 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -90,6 +90,7 @@ object Dependencies { val sentry = "1.7.30" val scio = "0.9.5" + val tcnative = "2.0.30.Final" val beam = "2.24.0" val macros = "2.1.1" val scalaTest = "3.0.8" @@ -141,6 +142,7 @@ object Dependencies { // Beam val sentry = "io.sentry" % "sentry" % V.sentry val scio = "com.spotify" %% "scio-core" % V.scio + val tcnative = "io.netty" % "netty-tcnative-boringssl-static" % V.tcnative val beam = "org.apache.beam" % "beam-runners-google-cloud-dataflow-java" % V.beam val slf4j = "org.slf4j" % "slf4j-simple" % V.slf4j val scioTest = "com.spotify" %% "scio-test" % V.scio % Test