From c726ff34d9e3c0b2cfc8f52af220ea4ac8483031 Mon Sep 17 00:00:00 2001 From: Brian Scully Date: Sat, 30 Sep 2023 12:42:30 -0400 Subject: [PATCH] Clean up old publish info --- build.sbt | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index 470bc1a6..89c252cf 100644 --- a/build.sbt +++ b/build.sbt @@ -92,13 +92,10 @@ val commonSettings = Seq( "Typesafe Snapshots" at "https://repo.typesafe.com/typesafe/snapshots/", "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" ), - parallelExecution in Test := false, - testOptions in Test += Tests.Argument("-oDS"), - testOptions in Ci += Tests.Argument("-l", "org.scalatest.tags.Slow"), - fork in Test := false, - publishTo := sonatypePublishTo.value, - publishConfiguration := publishConfiguration.value.withOverwrite(true), - publishLocalConfiguration := publishLocalConfiguration.value.withOverwrite(true) + Test / parallelExecution := false, + Test / testOptions += Tests.Argument("-oDS"), + Ci / testOptions += Tests.Argument("-l", "org.scalatest.tags.Slow"), + Test / fork := false, ) ++ inConfig(Ci)(Defaults.testTasks) lazy val `akka-persistence-mongo-common` = (project in file("common"))