Skip to content

Commit

Permalink
upgrade persistence dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fupelaqu committed Dec 5, 2023
1 parent 0416fc7 commit fb586df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ThisBuild / organization := "app.softnetwork"

name := "scheduler"

ThisBuild / version := "0.6.1"
ThisBuild / version := "0.6.2"

ThisBuild / scalaVersion := "2.12.15"

Expand Down
2 changes: 1 addition & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
object Versions {

val genericPersistence = "0.6.0"
val genericPersistence = "0.6.1"

val scalatest = "3.2.16"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,9 @@ import app.softnetwork.scheduler.persistence.query.{
SchedulerToSampleProcessorStream
}
import app.softnetwork.scheduler.persistence.typed.{SampleBehavior, SchedulerBehavior}
import app.softnetwork.session.service.SessionMaterials
import org.scalatest.Suite
import org.softnetwork.session.model.Session

trait SchedulerWithSampleTestKit extends SchedulerTestKit {
_: Suite with SessionMaterials[Session] =>
trait SchedulerWithSampleTestKit extends SchedulerTestKit { _: Suite =>
override def schedulerEntities: ActorSystem[_] => Seq[launch.PersistentEntity[_, _, _, _]] =
_ => Seq(SchedulerBehavior, SampleBehavior)

Expand Down

0 comments on commit fb586df

Please sign in to comment.