diff --git a/build.sbt b/build.sbt index 5eac17eb..e5e3773f 100644 --- a/build.sbt +++ b/build.sbt @@ -37,7 +37,7 @@ val parquetVersion = "1.17.0" // keep in sync with scio val protoBufVersion = "4.33.0" // keep in sync with scio val scalaTestVersion = "3.2.20" val scalaCheckVersion = "1.19.0" -val scalaCollectionCompatVersion = "2.13.0" +val scalaCollectionCompatVersion = "2.14.0" val scoptVersion = "4.1.0" val shapelessVersion = "2.3.13" // keep in sync with scio val sourcecodeVersion = "0.4.4" @@ -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 },