From 79718a068d069b457f766f32d7f3e9270970dbfa Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Sun, 13 Mar 2022 08:46:08 +0100 Subject: [PATCH] Explicit dependency for pr validation diff, #27937 (#31239) * change of akka-actor didn't trigger build of akka-actor-tests because the dependency was via akka-testkit --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 1685066a44..bc8bf78feb 100644 --- a/build.sbt +++ b/build.sbt @@ -115,7 +115,7 @@ lazy val actor = akkaModule("akka-actor") .enablePlugins(BoilerplatePlugin) lazy val actorTests = akkaModule("akka-actor-tests") - .dependsOn(testkit % "compile->compile;test->test") + .dependsOn(testkit % "compile->compile;test->test", actor) .settings(Dependencies.actorTests) .enablePlugins(NoPublish) .disablePlugins(MimaPlugin) @@ -551,7 +551,7 @@ lazy val actorTestkitTyped = akkaModule("akka-actor-testkit-typed") .settings(Dependencies.actorTestkitTyped) lazy val actorTypedTests = akkaModule("akka-actor-typed-tests") - .dependsOn(actorTyped % "compile->CompileJdk9", actorTestkitTyped % "compile->compile;test->test") + .dependsOn(actorTyped % "compile->CompileJdk9", actorTestkitTyped % "compile->compile;test->test", actor) .settings(AkkaBuild.mayChangeSettings) .disablePlugins(MimaPlugin) .enablePlugins(NoPublish)