Some basic build updates.

This commit is contained in:
Pat Garrity 2023-12-23 21:14:18 -06:00
parent 63f006f927
commit 50f4a68036
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76
2 changed files with 4 additions and 2 deletions

View file

@ -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")
}
)

View file

@ -1 +1,3 @@
credentials += Credentials(Path.userHome / ".sbt" / ".credentials")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")