Changing name to sbt-gs-semver

This commit is contained in:
Pat Garrity 2024-01-12 22:26:46 -06:00
parent ab65f33ae5
commit 2adf6ce66d
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76
2 changed files with 4 additions and 14 deletions

View file

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

View file

@ -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](