Release 0.4.0: Support scala 3.5.0, remove default license.

This commit is contained in:
Pat Garrity 2024-08-22 21:07:52 -05:00
parent b1b9eadd2d
commit 011ce15ffc
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76
3 changed files with 7 additions and 15 deletions

View file

@ -9,7 +9,7 @@ for non-GS projects.
```scala
resolvers += "Garrity Software Releases" at "https://maven.garrity.co/gs"
addSbtPlugin("gs" % "sbt-garrity-software" % "0.1.0")
addSbtPlugin("gs" % "sbt-garrity-software" % "0.4.0")
```
**File: build.sbt**

View file

@ -21,16 +21,9 @@ object Gs {
"-Wunused:imports", // Warn if an import selector is not referenced.
"-Wunused:locals", // Warn if a local definition is unused.
"-Wunused:privates", // Warn if a private member is unused.
"-Ysafe-init" // Enable the experimental safe initialization check.
"-Wsafe-init" // Enable the safe initialization check.
)
/**
* Definition of the MIT license. This is the default license for GS
* open source projects.
*/
val MIT: (String, java.net.URL) =
"MIT" -> sbt.url("https://garrity.co/MIT.html")
/**
* Host of the GS Git server.
*/

View file

@ -20,7 +20,6 @@ object GsPlugin extends AutoPlugin {
connection = Gs.gitSsh(gsProjectName.value)
)
),
licenses := List(Gs.MIT),
homepage := Some(url(Gs.gitRepo(gsProjectName.value))),
organizationName := Gs.OrganizationName,
organization := Gs.GroupId,