diff --git a/build.sbt b/build.sbt index 9af8d16..b607145 100644 --- a/build.sbt +++ b/build.sbt @@ -22,16 +22,16 @@ lazy val publishSettings = Seq( pomIncludeRepository := Function.const(false), scmInfo := Some( ScmInfo( - url(s"https://git.garrity.co/garrity-software/$ProjectName"), + uri(s"https://git.garrity.co/garrity-software/$ProjectName"), s"git@git.garrity.co:garrity-software/$ProjectName.git" ) ), description := Description, licenses := List( - "MIT" -> url(s"https://git.garrity.co/garrity-software/$ProjectName/LICENSE") + "MIT" -> uri(s"https://git.garrity.co/garrity-software/$ProjectName/LICENSE") ), homepage := Some( - url(s"https://git.garrity.co/garrity-software/$ProjectName") + uri(s"https://git.garrity.co/garrity-software/$ProjectName") ), publishTo := { val repo = "https://maven.garrity.co/" diff --git a/project/build.properties b/project/build.properties index 312809a..3b9dfab 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=2.0.1 +sbt.version=2.0.3 diff --git a/src/main/scala/gs/GsPlugin.scala b/src/main/scala/gs/GsPlugin.scala index 2b41c80..726c63c 100644 --- a/src/main/scala/gs/GsPlugin.scala +++ b/src/main/scala/gs/GsPlugin.scala @@ -3,8 +3,8 @@ package gs import java.nio.charset.StandardCharsets import java.nio.file.Files import java.nio.file.Paths -import sbt._ -import sbt.Keys._ +import sbt.* +import sbt.Keys.* object GsPlugin extends AutoPlugin: override def trigger = allRequirements