Skip to content

Commit

Permalink
Update scio to 0.14.5
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Jun 14, 2024
1 parent 6fc33e2 commit 0b5545b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// see https://github.com/spotify/scio/blob/v0.14.2/build.sbt
val scioVersion = "0.14.2"
val beamVersion = "2.54.0"
// see https://github.com/spotify/scio/blob/v0.14.5/build.sbt
val scioVersion = "0.14.5"
val beamVersion = "2.56.0"
val slf4jVersion = "1.7.30"
val flinkVersion = "1.16.0"
val flinkVersion = "1.17.0"
val sparkVersion = "3.5.0"

lazy val root = project
Expand Down
12 changes: 6 additions & 6 deletions src/main/g8/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import complete.DefaultParsers._
$endif$

// see https://github.com/spotify/scio/blob/v0.14.2/build.sbt
val scioVersion = "0.14.2"
val beamVersion = "2.54.0"
val scioVersion = "0.14.5"
val beamVersion = "2.56.0"
val slf4jVersion = "1.7.30"
$if(FlinkRunner.truthy)$
val flinkVersion = "1.16.0"
val flinkVersion = "1.17.0"
$endif$
$if(SparkRunner.truthy)$
val sparkVersion = "3.5.0"
Expand All @@ -29,7 +29,7 @@ lazy val commonSettings = Def.settings(
organization := "$organization$",
// Semantic versioning http://semver.org/
version := "0.1.0-SNAPSHOT",
scalaVersion := "2.13.13",
scalaVersion := "2.13.14",
scalacOptions ++= Seq(
"-release", "8",
"-deprecation",
Expand Down Expand Up @@ -61,7 +61,7 @@ lazy val root: Project = project
"org.apache.beam" % "beam-runners-google-cloud-dataflow-java" % beamVersion % Runtime,
$endif$
$if(FlinkRunner.truthy)$
"org.apache.beam" % "beam-runners-flink-1.16" % beamVersion % Runtime,
"org.apache.beam" % "beam-runners-flink-1.17" % beamVersion % Runtime,
"org.apache.flink" % "flink-clients" % flinkVersion % Runtime,
"org.apache.flink" % "flink-streaming-java" % flinkVersion % Runtime,
$endif$
Expand All @@ -70,7 +70,7 @@ lazy val root: Project = project
"org.apache.spark" %% "spark-core" % sparkVersion % Runtime,
"org.apache.spark" %% "spark-streaming" % sparkVersion % Runtime,
$endif$
"com.spotify" %% "scio-test" % scioVersion % Test,
"com.spotify" %% "scio-test-core" % scioVersion % Test,
"org.slf4j" % "slf4j-simple" % slf4jVersion % Test
),
$if(DataflowFlexTemplate.truthy)$
Expand Down
2 changes: 1 addition & 1 deletion src/main/g8/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
$if(DataflowFlexTemplate.truthy) $
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.0")
$endif$

0 comments on commit 0b5545b

Please sign in to comment.