From b3a404b26499446e449aa7dd9121e925b163f757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Thu, 29 Jun 2023 16:52:06 +0200 Subject: [PATCH 1/2] build: Bump sbt 1.9.1, include release notes url in pom --- project/Common.scala | 4 ++++ project/build.properties | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/project/Common.scala b/project/Common.scala index dd0fddb9cc..aba35058e2 100644 --- a/project/Common.scala +++ b/project/Common.scala @@ -30,6 +30,10 @@ object Common extends AutoPlugin { "Contributors", "https://gitter.im/akka/dev", url("https://github.com/akka/alpakka/graphs/contributors")), + releaseNotesURL := ( + if ((ThisBuild / isSnapshot).value) None + else Some(url(s"https://github.com/akka/alpakka/releases/tag/v${version.value}")) + ), licenses := { val tagOrBranch = if (version.value.endsWith("SNAPSHOT")) "main" diff --git a/project/build.properties b/project/build.properties index 46e43a97ed..3c0b78a7c6 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.8.2 +sbt.version=1.9.1 From e63116e6c7ae678ed4a0e83510512d80ff0af294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Thu, 29 Jun 2023 19:19:50 +0200 Subject: [PATCH 2/2] Formatting --- project/Common.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/Common.scala b/project/Common.scala index aba35058e2..c0f433cdeb 100644 --- a/project/Common.scala +++ b/project/Common.scala @@ -31,8 +31,8 @@ object Common extends AutoPlugin { "https://gitter.im/akka/dev", url("https://github.com/akka/alpakka/graphs/contributors")), releaseNotesURL := ( - if ((ThisBuild / isSnapshot).value) None - else Some(url(s"https://github.com/akka/alpakka/releases/tag/v${version.value}")) + if ((ThisBuild / isSnapshot).value) None + else Some(url(s"https://github.com/akka/alpakka/releases/tag/v${version.value}")) ), licenses := { val tagOrBranch =