From 82275d07ac3c89e74919d7e7258894b8f010e952 Mon Sep 17 00:00:00 2001 From: "Frank S. Thomas" Date: Wed, 2 Dec 2020 13:02:02 +0100 Subject: [PATCH 1/2] Add homepage setting to build This enables Scala Steward to link to this page, the GitHub release notes and version diff in its pull requests. --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index ada51bd29..d1ae4972a 100644 --- a/build.sbt +++ b/build.sbt @@ -6,6 +6,7 @@ ThisBuild / version := { else orig } ThisBuild / description := "sbt plugin to define project matrix for cross building" +ThisBuild / homepage := Some(url("https://github.com/sbt/sbt-projectmatrix")), ThisBuild / licenses := Seq("MIT License" -> url("https://github.com/sbt/sbt-projectmatrix/blob/master/LICENSE")) lazy val root = (project in file(".")) From d5505a752a95ca3390cda37a67df8646110337fd Mon Sep 17 00:00:00 2001 From: "Frank S. Thomas" Date: Wed, 2 Dec 2020 13:51:59 +0100 Subject: [PATCH 2/2] Remove comma Co-authored-by: Anton Sviridov --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index d1ae4972a..11088d192 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ ThisBuild / version := { else orig } ThisBuild / description := "sbt plugin to define project matrix for cross building" -ThisBuild / homepage := Some(url("https://github.com/sbt/sbt-projectmatrix")), +ThisBuild / homepage := Some(url("https://github.com/sbt/sbt-projectmatrix")) ThisBuild / licenses := Seq("MIT License" -> url("https://github.com/sbt/sbt-projectmatrix/blob/master/LICENSE")) lazy val root = (project in file("."))