From 2adf6ce66df2117553d8b26292cb779c80dd2076 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Fri, 12 Jan 2024 22:26:46 -0600 Subject: [PATCH] Changing name to sbt-gs-semver --- README.md | 16 +++------------- build.sbt | 2 +- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 0eb638a..da7fa26 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# gs-semver-sbt-plugin +# sbt-gs-semver SemVer plugin for Garrity Software projects. Typically used for library development. @@ -32,7 +32,7 @@ This is an auto plugin that provides setting keys for version values. ```scala resolvers += "Garrity Software Releases" at "https://maven.garrity.co/gs" -addSbtPlugin("gs" % "gs-semver-sbt-plugin" % "0.1.0") +addSbtPlugin("gs" % "sbt-gs-semver" % "0.1.0") ``` ### Updating the Build File @@ -132,7 +132,7 @@ sbt -Drelease=minor -Dsnapshot=true semVerInfo ```scala resolvers += "Garrity Software Releases" at "https://maven.garrity.co/gs" -addSbtPlugin("gs" % "gs-semver-sbt-plugin" % "0.1.0") +addSbtPlugin("gs" % "sbt-gs-semver" % "0.1.0") ``` ### `build.sbt` @@ -150,16 +150,6 @@ lazy val sharedSettings = Seq( version := semVerSelected.value ) -lazy val publishSettings = Seq( - publishTo := { - val repo = "https://maven.garrity.co/" - if (semVerSnapshot.value) - Some("Garrity Software Maven" at repo + "snapshots") - else - Some("Garrity Software Maven" at repo + "releases") - } -) - lazy val `gs-example` = project .in(file(".")) .settings(sharedSettings) diff --git a/build.sbt b/build.sbt index 9b0b080..b1e09be 100644 --- a/build.sbt +++ b/build.sbt @@ -7,7 +7,7 @@ externalResolvers := Seq( "Garrity Software Maven Mirror" at "https://maven.garrity.co/releases" ) -val ProjectName: String = "gs-semver-sbt-plugin" +val ProjectName: String = "sbt-gs-semver" val Description: String = "SBT 1.9.0+ plugin for Git-based semantic versioning." def getProperty[A](