This is an automated email from the ASF dual-hosted git repository.

mdedetrich pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git


The following commit(s) were added to refs/heads/main by this push:
     new e597a702b9 Use Test configuration constant
e597a702b9 is described below

commit e597a702b9a54a0e193e09a50a1d45dfd1f56785
Author: Matthew de Detrich <[email protected]>
AuthorDate: Wed Jan 24 22:29:03 2024 +1100

    Use Test configuration constant
---
 build.sbt | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/build.sbt b/build.sbt
index d6170d1915..5ada01d7f0 100644
--- a/build.sbt
+++ b/build.sbt
@@ -304,7 +304,7 @@ lazy val persistenceQuery = pekkoModule("persistence-query")
     persistence % "compile->compile;test->test",
     remote % "provided",
     protobufV3,
-    streamTestkit % "test")
+    streamTestkit % Test)
   .settings(Dependencies.persistenceQuery)
   .settings(AutomaticModuleName.settings("pekko.persistence.query"))
   .settings(OSGi.persistenceQuery)
@@ -315,7 +315,7 @@ lazy val persistenceQuery = pekkoModule("persistence-query")
   .enablePlugins(ScaladocNoVerificationOfDiagrams)
 
 lazy val persistenceShared = pekkoModule("persistence-shared")
-  .dependsOn(persistence % "test->test", testkit % "test->test", remote % 
"test")
+  .dependsOn(persistence % "test->test", testkit % "test->test", remote % Test)
   .settings(Dependencies.persistenceShared)
   .settings(AutomaticModuleName.settings("pekko.persistence.shared"))
   .settings(Test / fork := true)
@@ -335,7 +335,7 @@ lazy val persistenceTestkit = 
pekkoModule("persistence-testkit")
     persistenceTyped % "compile->compile;provided->provided;test->test",
     testkit % "compile->compile;test->test",
     actorTestkitTyped,
-    persistenceTck % "test")
+    persistenceTck % Test)
   .settings(Dependencies.persistenceTestKit)
   .settings(AutomaticModuleName.settings("pekko.persistence.testkit"))
   .disablePlugins(MimaPlugin)
@@ -343,8 +343,8 @@ lazy val persistenceTestkit = 
pekkoModule("persistence-testkit")
 lazy val persistenceTypedTests = pekkoModule("persistence-typed-tests")
   .dependsOn(
     persistenceTyped,
-    persistenceTestkit % "test",
-    actorTestkitTyped % "test",
+    persistenceTestkit % Test,
+    actorTestkitTyped % Test,
     persistence % "test->test", // for SteppingInMemJournal
     jackson % "test->test")
   .settings(PekkoBuild.mayChangeSettings)
@@ -398,7 +398,7 @@ lazy val remote =
       pki,
       actorTests % "test->test",
       testkit % "test->test",
-      streamTestkit % "test",
+      streamTestkit % Test,
       jackson % "test->test")
     .settings(Dependencies.remote)
     .settings(AutomaticModuleName.settings("pekko.remote"))
@@ -413,7 +413,7 @@ lazy val remoteTests = pekkoModule("remote-tests")
   .dependsOn(
     actorTests % "test->test",
     remote % "compile->CompileJdk9;test->test",
-    streamTestkit % "test",
+    streamTestkit % Test,
     multiNodeTestkit,
     jackson % "test->test")
   .settings(Dependencies.remoteTests)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to