From 007ecf2f978f87f5b92b59beba14078aa2db3170 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Fri, 6 Oct 2023 15:17:57 +0200 Subject: [PATCH] build: temporary snapshot repo (#4321) * must define something --- docs/release-train-issue-template.md | 2 +- project/Publish.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/release-train-issue-template.md b/docs/release-train-issue-template.md index 0c23abbd94..562b11ce71 100644 --- a/docs/release-train-issue-template.md +++ b/docs/release-train-issue-template.md @@ -32,7 +32,7 @@ Key links: - [ ] Check [API](https://doc.akka.io/api/akka-http/$VERSION$/) documentation - [ ] Check [reference](https://doc.akka.io/docs/akka-http/$VERSION$/) documentation. Check that the reference docs were deployed and show a version warning (see section below on how to fix the version warning). -- [ ] Check the release on https://repo.akka.io/maven/com/typesafe/akka/akka-http-core_2.13/$VERSION$/ +- [ ] Check the release on https://repo.akka.io/maven/com/typesafe/akka/akka-http-core_2.13/$VERSION$/akka-http-core_2.13-$VERSION$.pom ### When everything is on https://repo.akka.io/maven - [ ] Log into `gustav.akka.io` as `akkarepo` diff --git a/project/Publish.scala b/project/Publish.scala index 58b9e08beb..861a3c56f7 100644 --- a/project/Publish.scala +++ b/project/Publish.scala @@ -49,7 +49,7 @@ object Publish extends AutoPlugin { beforePublishTask := beforePublish(isSnapshot.value), publishSigned := publishSigned.dependsOn(beforePublishTask).value, publishTo := (if (isSnapshot.value) - None // FIXME snapshot repo + Some(Resolver.file("file", target.value / "repository")) // FIXME snapshot repo else Some("Cloudsmith API".at("https://maven.cloudsmith.io/lightbend/akka/"))), credentials ++= (if (isSnapshot.value) Seq[Credentials]() else cloudsmithCredentials(validate = false))