Skip to content

Commit

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

name := "generic-sequence-api"

ThisBuild / version := "0.2.0"
ThisBuild / version := "0.2.0.1"

ThisBuild / scalaVersion := "2.12.15"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package app.softnetwork.sbt.build

object Versions {

val genericPersistence = "0.3.0.2"
val genericPersistence = "0.3.0.3"

val server = "0.3.0.2"
val server = "0.3.0.3"

val scalatest = "3.1.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package app.softnetwork.sequence.launch
import akka.actor.typed.ActorSystem
import app.softnetwork.api.server.launch.Application
import app.softnetwork.persistence.launch.{PersistenceGuardian, PersistentEntity}
import app.softnetwork.persistence.schema.SchemaProvider
import app.softnetwork.sequence.persistence.typed.Sequence
import com.typesafe.scalalogging.StrictLogging

Expand All @@ -14,7 +15,7 @@ trait SequenceApplication
extends Application
with PersistenceGuardian
with SequenceRoutes
with StrictLogging {
with StrictLogging { _: SchemaProvider =>

import app.softnetwork.persistence.launch.PersistenceGuardian._

Expand Down

0 comments on commit bf7b4d2

Please sign in to comment.