Merge pull request #22349 from hseeberger/22342-dependency-configurations
Fix configuration for persistence-query test deps (fix #22342)
This commit is contained in:
commit
37f4436a39
3 changed files with 5 additions and 6 deletions
|
|
@ -75,7 +75,7 @@ akka.persistence.snapshot-store.plugin = "akka.persistence.no-snapshot-store"
|
|||
}
|
||||
|
||||
object JournalPuppet extends ExtensionId[JournalProbe] with ExtensionIdProvider {
|
||||
override def lookup()= JournalPuppet
|
||||
override def lookup() = JournalPuppet
|
||||
|
||||
override def createExtension(system: ExtendedActorSystem): JournalProbe =
|
||||
new JournalProbe()(system)
|
||||
|
|
|
|||
|
|
@ -10,14 +10,14 @@ import java.util.concurrent.locks.ReentrantLock
|
|||
|
||||
import akka.actor._
|
||||
import akka.annotation.ApiMayChange
|
||||
import akka.japi.function.{Effect, Procedure}
|
||||
import akka.japi.function.{ Effect, Procedure }
|
||||
import akka.stream._
|
||||
import akka.stream.impl.StreamLayout.Module
|
||||
import akka.stream.impl.fusing.{GraphInterpreter, GraphStageModule, SubSink, SubSource}
|
||||
import akka.stream.impl.fusing.{ GraphInterpreter, GraphStageModule, SubSink, SubSource }
|
||||
import akka.stream.impl.ReactiveStreamsCompliance
|
||||
|
||||
import scala.collection.mutable.ArrayBuffer
|
||||
import scala.collection.{immutable, mutable}
|
||||
import scala.collection.{ immutable, mutable }
|
||||
import scala.concurrent.duration.FiniteDuration
|
||||
import akka.stream.actor.ActorSubscriberMessage
|
||||
|
||||
|
|
|
|||
|
|
@ -200,8 +200,7 @@ object AkkaBuild extends Build {
|
|||
dependencies = Seq(
|
||||
stream,
|
||||
persistence % "compile;provided->provided;test->test",
|
||||
testkit % "compile;test->test",
|
||||
streamTestkit % "compile;test->test")
|
||||
streamTestkit % "test")
|
||||
)
|
||||
|
||||
lazy val persistenceTck = Project(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue