From a5b47e37fa2d921abe65a9c0b3bc03dfd0854597 Mon Sep 17 00:00:00 2001 From: Paul Butcher Date: Mon, 6 Jan 2025 15:04:44 +0000 Subject: [PATCH] x in Test -> Test / x https://www.scala-sbt.org/1.x/docs/Migrating-from-sbt-013x.html#slash --- project/Common.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/Common.scala b/project/Common.scala index 69da7cdb..a51d02a7 100644 --- a/project/Common.scala +++ b/project/Common.scala @@ -36,14 +36,14 @@ object Common { "-feature", "-language:postfixOps" ), - parallelExecution in Test := false, + Test / parallelExecution := false, publishMavenStyle := true, credentials += Credentials(Path.userHome / ".sbt" / "sonatype.credentials"), sonatypeCredentialHost := "central.sonatype.com", sonatypeRepository := "https://central.sonatype.com/service/local", licenses := Seq("MIT" -> url("https://github.com/wellcomecollection/scala-libs/blob/main/LICENSE")), publishTo := sonatypePublishToBundle.value, - publishArtifact in Test := true, + Test / publishArtifact := true, // Don't build scaladocs // https://www.scala-sbt.org/sbt-native-packager/formats/universal.html#skip-packagedoc-task-on-stage mappings in (Compile, packageDoc) := Nil,