diff --git a/build.sbt b/build.sbt index 5eac17eb..e6158549 100644 --- a/build.sbt +++ b/build.sbt @@ -36,7 +36,7 @@ val magnolifyVersion = "0.9.4" // keep in sync with scio 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 scalaCheckVersion = "1.20.0" val scalaCollectionCompatVersion = "2.13.0" val scoptVersion = "4.1.0" val shapelessVersion = "2.3.13" // 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 },