diff --git a/build.sbt b/build.sbt index e52f4fc..4ad931d 100644 --- a/build.sbt +++ b/build.sbt @@ -2,16 +2,9 @@ ThisBuild / organizationName := "garrity software" ThisBuild / organization := "gs" ThisBuild / versionScheme := Some("early-semver") -ThisBuild / homepage := Some( - url("https://git.garrity.co/garrity-software/gs-semver-sbt-plugin") -) - -ThisBuild / licenses := Seq( - "Apache-2.0" -> url("http://www.apache.org/license/LICENSE-2.0") -) - externalResolvers := Seq( - "Garrity Software Releases" at "https://maven.garrity.co/releases" + "Garrity Software Releases" at "https://maven.garrity.co/gs", + "Garrity Software Maven Mirror" at "https://maven.garrity.co/releases" ) val ProjectName: String = "gs-semver-sbt-plugin" @@ -64,7 +57,7 @@ lazy val publishSettings = Seq( if (!IsRelease) Some("Garrity Software Maven" at repo + "snapshots") else - Some("Garrity Software Maven" at repo + "releases") + Some("Garrity Software Maven" at repo + "gs") } ) diff --git a/project/plugins.sbt b/project/plugins.sbt new file mode 100644 index 0000000..291bb34 --- /dev/null +++ b/project/plugins.sbt @@ -0,0 +1 @@ +credentials += Credentials(Path.userHome / ".sbt" / ".credentials")