From 50f4a6803697732ee1d3c84f873bb743fdbf32a4 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Sat, 23 Dec 2023 21:14:18 -0600 Subject: [PATCH] Some basic build updates. --- build.sbt | 4 ++-- project/plugins.sbt | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index dd5d446..4810a31 100644 --- a/build.sbt +++ b/build.sbt @@ -101,8 +101,8 @@ lazy val publishSettings = Seq( publishTo := { val repo = "https://maven.garrity.co/" if (SelectedVersion.endsWith("SNAPSHOT")) - Some("snapshots" at repo + "snapshots") - else Some("releases" at repo + "releases") + Some("Garrity Software Maven" at repo + "snapshots") + else Some("Garrity Software Maven" at repo + "releases") } ) diff --git a/project/plugins.sbt b/project/plugins.sbt index 604b256..2c1199a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1,3 @@ +credentials += Credentials(Path.userHome / ".sbt" / ".credentials") + addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")