Akka persistence plugin with no ops for testing. This plugin does NOT persist any message or snapshot to ANY unerlying storage. Use it for testing purpose only!
The plugin is compiled with Scala 2.12 and 2.11 and are deployed on maven sonatype repositories. To use the plugin add this to your sbt build file :
libraryDependencies += "com.github.mingchuno" %% "akka-persistence-no-ops" % "0.1.0"
To use the journal component, you need to enable it in your configuration. To use the default settings, simply add these lines:
akka.persistence.journal.plugin = "akka-persistence-no-ops.journal"
akka.persistence.snapshot-store.plugin = "akka-persistence-no-ops.snapshot"