Skip to content

Commit 316a589

Browse files
committed
upgrade dependencies to persistence api + pre load routes for specifications
1 parent 80a3230 commit 316a589

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ThisBuild / organization := "app.softnetwork"
3131

3232
name := "scheduler"
3333

34-
ThisBuild / version := "0.3.2"
34+
ThisBuild / version := "0.3.2.1"
3535

3636
ThisBuild / scalaVersion := "2.12.15"
3737

project/src/main/scala/app/softnetwork/sbt/build/Versions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package app.softnetwork.sbt.build
22

33
object Versions {
44

5-
val genericPersistence = "0.3.2.2"
5+
val genericPersistence = "0.3.2.3"
66

77
val scalatest = "3.1.1"
88
}

testkit/src/main/scala/app/softnetwork/scheduler/scalatest/SchedulerRouteTestKit.scala

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ trait SchedulerRouteTestKit
1717
with SchedulerGrpcServices {
1818
_: Suite with ApiRoutes =>
1919

20+
override def beforeAll(): Unit = {
21+
super.beforeAll()
22+
// pre load routes
23+
apiRoutes(typedSystem())
24+
}
25+
2026
lazy val path = s"/$RootPath/$SchedulerPath"
2127

2228
def addSchedule(schedule: Schedule): Unit = {

0 commit comments

Comments
 (0)