From f4d7e61a772e3e7ffb3b678cfac86d602daeb89b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 18 Jun 2026 22:29:47 +0000 Subject: [PATCH] Update scio-avro, scio-core, ... to 0.15.7 --- build.sbt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 5eac17eb..65166b61 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.7" 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 },