Skip to content

Commit bb3faf0

Browse files
committed
upgrade scheduler and persistence dependencies
1 parent 3a16b4e commit bb3faf0

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint")
1212

1313
ThisBuild / resolvers ++= Seq(
1414
"Softnetwork Server" at "https://softnetwork.jfrog.io/artifactory/releases/",
15+
"Softnetwork snapshots" at "https://softnetwork.jfrog.io/artifactory/snapshots/",
1516
"Maven Central Server" at "https://repo1.maven.org/maven2",
1617
"Typesafe Server" at "https://repo.typesafe.com/typesafe/releases"
1718
)

project/Versions.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ object Versions {
44

55
val slf4j = "1.7.36"
66

7-
val genericPersistence = "0.6.2.1"
7+
val genericPersistence = "0.7-SNAPSHOT"
88

9-
val scheduler = "0.6.3"
9+
val scheduler = "0.7-SNAPSHOT"
1010

1111
val scalatest = "3.2.16"
1212
}

testkit/src/main/scala/app/softnetwork/notification/scalatest/AllNotificationsTestKit.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,16 @@ trait AllNotificationsTestKit
3838

3939
lazy val allNotificationsHandler: AllNotificationsHandler = AllNotificationsHandler
4040

41-
override lazy val additionalConfig: String = notificationGrpcConfig +
41+
lazy val additionalNotificationConfig: String = notificationGrpcConfig +
4242
s"""
4343
|notification.mail.host = $hostname
4444
|notification.mail.port = $smtpPort
4545
|notification.push.mock.apns.port = $apnsPort
4646
|notification.sms.mode.base-url = "http://$interface:$smsPort"
4747
|""".stripMargin
4848

49+
override lazy val additionalConfig: String = additionalNotificationConfig
50+
4951
override def beforeAll(): Unit = {
5052
super.beforeAll()
5153
assert(

0 commit comments

Comments
 (0)