Skip to content

Commit

Permalink
Scio 14 7 (#179)
Browse files Browse the repository at this point in the history
* Update scio

* Update scio
  • Loading branch information
mkuthan authored Aug 29, 2024
1 parent f65213c commit 6f0f2b6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
6 changes: 4 additions & 2 deletions project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
1 change: 0 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
addDependencyTreePlugin
// test coverage
addSbtPlugin("com.github.sbt" % "sbt-jacoco" % "3.5.0")
// code formatting
Expand Down

0 comments on commit 6f0f2b6

Please sign in to comment.