Skip to content

Commit

Permalink
Update Pekko dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew de Detrich <mdedetrich@gmail.com>
  • Loading branch information
mdedetrich committed Mar 23, 2024
1 parent 8a3a681 commit 9988fa1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.sbt
@@ -1,7 +1,7 @@
libraryDependencies ++= {
Dependencies.kanadi ++ (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, n)) if n == 13 =>
Dependencies.test213Seq.map(_ % "test")
Dependencies.test213Seq.map(_ % Test)
case _ =>
Seq.empty
})
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Expand Up @@ -6,8 +6,8 @@ object Dependencies {
val logback = "1.4.11"
val scalaLogging = "3.9.5"
val pureConfig = "0.17.4"
val pekko = "1.0.1"
val pekkoHttp = "1.0.0"
val pekko = "1.0.2"
val pekkoHttp = "1.0.1"
val pekkoStreamJson = "1.0.0"
val enumeratumCirce = "1.7.3"
val circe = "0.14.5"
Expand All @@ -31,7 +31,7 @@ object Dependencies {
private val scalaParallelCollections =
"org.scala-lang.modules" %% "scala-parallel-collections" % versions.scalaParallelCollections

private val testSeq = Seq(scalaTest, pekkoTestKit)
private val testSeq = Seq(scalaTest, pekkoTestKit, pekkoStream)

val test213Seq: Seq[ModuleID] = Seq(scalaParallelCollections)

Expand All @@ -49,8 +49,8 @@ object Dependencies {
pureConfig,
scalaLogging,
logbackClassic
) map (_ % "compile")
val test = testSeq map (_ % "test")
) map (_ % Compile)
val test = testSeq map (_ % Test)
compile ++ test
}
}

0 comments on commit 9988fa1

Please sign in to comment.