From 31ce4c04b009643d26dcf8fd96677fb08a4f7325 Mon Sep 17 00:00:00 2001 From: Jeff May Date: Thu, 13 Oct 2022 16:57:28 -0700 Subject: [PATCH] Add SCM info to build.sbt --- build.sbt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index a6d6219d..412225c5 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,9 @@ import Dependencies._ name := "vapors-root" ThisBuild / organization := "com.rallyhealth" ThisBuild / organizationName := "Rally Health" - +ThisBuild / scmInfo := Some( + ScmInfo(url("https://github.com/jeffmay/vapors"), "scm:git:git@github.com:jeffmay/vapors.git") +) ThisBuild / versionScheme := Some("early-semver") ThisBuild / scalaVersion := Dependencies.Scala_2_13 ThisBuild / licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))