Skip to content

Commit

Permalink
build: Bump sbt 1.9.1 and include release notes url in pom (#4285)
Browse files Browse the repository at this point in the history
* build: Include release notes url in pom

* the _right_ url
  • Loading branch information
johanandren authored Aug 16, 2023
1 parent 5203f55 commit c08a2da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@ inThisBuild(Def.settings(
url("https://github.com/akka/akka-http/graphs/contributors"))
),
startYear := Some(2014),
releaseNotesURL := (
if (isSnapshot.value) None
else Some(url(s"https://github.com/akka/akka-http/releases/tag/v${version.value}"))
),
licenses := {
val tagOrBranch =
if (version.value.endsWith("SNAPSHOT")) "main"
if (isSnapshot.value) "main"
else "v" + version.value
Seq(("BUSL-1.1", url(s"https://raw.githubusercontent.com/akka/akka-http/${tagOrBranch}/LICENSE")))
},
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.8.2
sbt.version=1.9.1

0 comments on commit c08a2da

Please sign in to comment.