From f7b9e3d4ee09d84edfb52581f0fa9705675ea49f Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Fri, 25 Aug 2023 17:12:39 +0200 Subject: [PATCH] Remove Apache snapshot repository --- build.sbt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 30bfcb0d9..fb530ff1f 100644 --- a/build.sbt +++ b/build.sbt @@ -9,10 +9,6 @@ import net.bzzt.reproduciblebuilds.ReproducibleBuildsPlugin.reproducibleBuildsCheckResolver -// TODO: Remove when Pekko has a proper release -ThisBuild / resolvers += Resolver.ApacheMavenSnapshotsRepo -ThisBuild / updateOptions := updateOptions.value.withLatestSnapshots(false) - ThisBuild / apacheSonatypeProjectProfile := "pekko" sourceDistName := "apache-pekko-connectors" sourceDistIncubating := true @@ -351,6 +347,9 @@ lazy val docs = project .enablePlugins(PekkoParadoxPlugin, ParadoxPlugin, ParadoxSitePlugin, PreprocessPlugin) .disablePlugins(MimaPlugin) .settings( + // TODO Remove when pekko-paradox-sbt has its first release + resolvers += Resolver.ApacheMavenSnapshotsRepo, + updateOptions := updateOptions.value.withLatestSnapshots(false), Compile / paradox / name := "Apache Pekko Connectors", publish / skip := true, pekkoParadoxGithub := Some("https://github.com/apache/incubator-pekko-connectors"),