diff --git a/project/Dependencies.scala b/project/Dependencies.scala index f795386e..47ded7b7 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -1,18 +1,18 @@ import sbt.* object Dependencies { - val scio = "com.spotify" %% "scio-core" % "0.14.5" + val scio = "com.spotify" %% "scio-core" % "0.14.7" - val scioGcp = "com.spotify" %% "scio-google-cloud-platform" % "0.14.5" excludeAll ( + val scioGcp = "com.spotify" %% "scio-google-cloud-platform" % "0.14.7" excludeAll ( ExclusionRule(organization = "org.apache.beam", name = "beam-runners-direct-java") ) - val scioTest = "com.spotify" %% "scio-test" % "0.14.5" excludeAll ( + val scioTest = "com.spotify" %% "scio-test" % "0.14.7" excludeAll ( ExclusionRule(organization = "org.apache.beam", name = "beam-runners-direct-java") ) - val beamDirectRunner = "org.apache.beam" % "beam-runners-direct-java" % "2.57.0" - val beamDataflowRunner = "org.apache.beam" % "beam-runners-google-cloud-dataflow-java" % "2.57.0" + val beamDirectRunner = "org.apache.beam" % "beam-runners-direct-java" % "2.58.1" + val beamDataflowRunner = "org.apache.beam" % "beam-runners-google-cloud-dataflow-java" % "2.58.1" val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" diff --git a/project/Settings.scala b/project/Settings.scala index d287c85f..212887a8 100644 --- a/project/Settings.scala +++ b/project/Settings.scala @@ -42,13 +42,15 @@ object Settings { // use jcl-over-slf4j bridge instead of common-logging excludeDependencies += "commons-logging" % "commons-logging", // pin jackson - dependencyOverrides += "com.fasterxml.jackson.core" % "jackson-databind" % "2.14.1", + dependencyOverrides += "com.fasterxml.jackson.core" % "jackson-databind" % "2.15.4", + // pin zstd-jni + dependencyOverrides += "com.github.luben" % "zstd-jni" % "1.5.6-3", // enable XML report for codecov jacocoReportSettings := JacocoReportSettings() .withFormats(JacocoReportFormats.XML, JacocoReportFormats.HTML), // scalafix ThisBuild / semanticdbEnabled := true, - ThisBuild / semanticdbVersion := scalafixSemanticdb.revision + ThisBuild / semanticdbVersion := scalafixSemanticdb.revision, ) val assemblySettings = Seq( diff --git a/project/plugins.sbt b/project/plugins.sbt index 2923a8ec..27067672 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,3 @@ -addDependencyTreePlugin // test coverage addSbtPlugin("com.github.sbt" % "sbt-jacoco" % "3.5.0") // code formatting