From 290200cfb016a7db113e4aaceb96250b9acb17b4 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 2 Jul 2026 21:51:06 +0000 Subject: [PATCH] Update scio-avro, scio-core, ... to 0.15.9 --- build.sbt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 5eac17eb..a783544a 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,7 @@ import xerial.sbt.Sonatype.autoImport._ val algebirdVersion = "0.13.10" // Keep in sync with Scio: https://github.com/spotify/scio/blob/v0.15.4/build.sbt -val scioVersion = "0.15.4" +val scioVersion = "0.15.9" val avroVersion = avroCompilerVersion // keep in sync with scio val beamVersion = "2.71.0" // keep in sync with scio @@ -116,8 +116,13 @@ lazy val releaseSettings = Seq( publishMavenStyle := true, Test / publishArtifact := false, publishTo := { - val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/" - val staging = Some(Resolver.file("local-staging", (ThisBuild / baseDirectory).value / "target" / "sonatype-staging" / version.value)) + val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/" + val staging = Some( + Resolver.file( + "local-staging", + (ThisBuild / baseDirectory).value / "target" / "sonatype-staging" / version.value + ) + ) if (isSnapshot.value) Some("central-snapshots" at centralSnapshots) else staging },