Compare commits

..

No commits in common. "6f3e21e75c82c6d77c03b329db0de147d9df1be2" and "d2dc355d815e28c7400c24d9900c4990841d811d" have entirely different histories.

2 changed files with 21 additions and 22 deletions

View file

@ -11,7 +11,7 @@ externalResolvers := Seq(
val ProjectName: String = "sbt-garrity-software"
val Description: String = "SBT 2.0.0+ plugin for Garrity Software projects."
val CurrentVersion: String = "0.8.0"
val CurrentVersion: String = "0.8.0-SNAPSHOT"
def isRelease(): Boolean =
!CurrentVersion.contains("SNAPSHOT")
@ -28,9 +28,7 @@ lazy val publishSettings = Seq(
),
description := Description,
licenses := List(
"MIT" -> uri(
s"https://git.garrity.co/garrity-software/$ProjectName/LICENSE"
)
"MIT" -> uri(s"https://git.garrity.co/garrity-software/$ProjectName/LICENSE")
),
homepage := Some(
uri(s"https://git.garrity.co/garrity-software/$ProjectName")
@ -50,8 +48,9 @@ lazy val root = Project(ProjectName, file("."))
.settings(
name := ProjectName,
version := CurrentVersion,
pluginCrossBuild / sbtVersion :=
"2.0.0",
pluginCrossBuild / sbtVersion := {
"2.0.0"
},
scalacOptions := Seq(
"-encoding",
"utf8",