From 3fe65bd9fe4b73533555c8e31501b40ad3151975 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 15 May 2024 16:52:23 +0000 Subject: [PATCH 1/2] Applied Scalafix rule(s) https://gist.githubusercontent.com/eed3si9n/57e83f5330592d968ce49f0d5030d4d5/raw/7f576f16a90e432baa49911c9a66204c354947bb/Sbt0_13BuildSyntax.scala See https://eed3si9n.com/syntactic-scalafix-rule-for-unified-slash-syntax for details --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 0dfa3b96..3537541a 100644 --- a/build.sbt +++ b/build.sbt @@ -186,7 +186,7 @@ val global = (project in file(".")) .settings(name := "gospeak") // rename zip file created from `dist` command -packageName in Universal := "gospeak" +(Universal / packageName) := "gospeak" // needed to parallelise tests in circleci: https://tanin.nanakorn.com/technical/2018/09/10/parallelise-tests-in-sbt-on-circle-ci.html val printTests = taskKey[Unit]("Print full class names of tests to the file `test-full-class-names.log`.") @@ -196,7 +196,7 @@ printTests := { println("Print full class names of tests to the file `test-full-class-names.log`.") val pw = new PrintWriter(new File("test-full-class-names.log")) - (definedTests in Test).value.sortBy(_.name).foreach { t => + ((Test / definedTests)).value.sortBy(_.name).foreach { t => pw.println(t.name) } pw.close() From e9a6fe5c727d754ce21c8b5fb2ecbd370f1b68a6 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 15 May 2024 16:52:23 +0000 Subject: [PATCH 2/2] Update sbt to 1.10.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 0837f7a1..081fdbbc 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.3.13 +sbt.version=1.10.0