Skip to content

Commit

Permalink
Merge pull request #140 from sjrd/fix-project-url
Browse files Browse the repository at this point in the history
Configure homepage and scmInfo like in other repos.
  • Loading branch information
sjrd authored Jul 2, 2021
2 parents ad45d62 + 443318f commit ab513b7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions project/Extra.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,16 @@ object Extra {
lazy val publishSettings = Seq(
Compile / publishArtifact := true,
Test / publishArtifact := false,
homepage := Some(
url("https://github.com/portable-scala/sbt-crossproject")),
licenses := Seq(
"BSD-like" -> url("http://www.scala-lang.org/downloads/license.html")
),
scmInfo := Some(
ScmInfo(
browseUrl = url("https://github.com/portable-scala/sbt-crossproject"),
connection =
"scm:git:[email protected]:portable-scala/sbt-crossproject.git"
url("https://github.com/portable-scala/sbt-crossproject"),
"scm:git:[email protected]:portable-scala/sbt-crossproject.git",
Some("scm:git:[email protected]:portable-scala/sbt-crossproject.git")
)
),
// Publishing
Expand Down

0 comments on commit ab513b7

Please sign in to comment.