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
This commit is contained in:
Patrik Nordwall 2022-03-13 08:46:08 +01:00 committed by GitHub
parent ae05ccaf77
commit 79718a068d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)