Skip to content

Commit

Permalink
Update pekko-discovery, pekko-slf4j, ... to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Sep 4, 2024
1 parent 6cb4af7 commit 010de9f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ lazy val pekkoGrpcExamples: ProjectMatrix = (projectMatrix in file("grpc/pekko-e
.settings(
name := "tapir-pekko-grpc-examples",
libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-discovery" % "1.0.3",
"org.apache.pekko" %% "pekko-discovery" % "1.1.0",
slf4j
),
fork := true
Expand Down Expand Up @@ -1409,8 +1409,8 @@ lazy val playServer: ProjectMatrix = (projectMatrix in file("server/play-server"

// Play 2.9 Server
lazy val play29Scala2Deps = Map(
"com.typesafe.akka" -> ("2.6.21", Seq("akka-actor", "akka-actor-typed", "akka-slf4j", "akka-serialization-jackson", "akka-stream")),
"com.typesafe" -> ("0.6.1", Seq("ssl-config-core")),
"com.typesafe.akka" -> ("2.6.21", Seq("akka-actor", "akka-actor-typed", "akka-slf4j", "akka-serialization-jackson", "akka-stream")),
"com.typesafe" -> ("0.6.1", Seq("ssl-config-core")),
"com.fasterxml.jackson.module" -> ("2.14.3", Seq("jackson-module-scala"))
)

Expand All @@ -1420,10 +1420,10 @@ lazy val play29Server: ProjectMatrix = (projectMatrix in file("server/play29-ser
name := "tapir-play29-server",
excludeDependencies ++=
(if (scalaBinaryVersion.value == "3") {
play29Scala2Deps.flatMap(e => e._2._2.map(_ + "_3").map(ExclusionRule(e._1, _))).toSeq
} else {
Seq.empty
}),
play29Scala2Deps.flatMap(e => e._2._2.map(_ + "_3").map(ExclusionRule(e._1, _))).toSeq
} else {
Seq.empty
}),
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-server" % Versions.play29Server,
"com.typesafe.play" %% "play" % Versions.play29Server,
Expand All @@ -1432,10 +1432,10 @@ lazy val play29Server: ProjectMatrix = (projectMatrix in file("server/play29-ser
"org.scala-lang.modules" %% "scala-collection-compat" % Versions.scalaCollectionCompat
) ++
(if (scalaBinaryVersion.value == "3") {
play29Scala2Deps.flatMap(e => e._2._2.map(e._1 %% _ % e._2._1).map(_.cross(CrossVersion.for3Use2_13))).toSeq
} else {
Seq.empty
}),
play29Scala2Deps.flatMap(e => e._2._2.map(e._1 %% _ % e._2._1).map(_.cross(CrossVersion.for3Use2_13))).toSeq
} else {
Seq.empty
})
)
.jvmPlatform(scalaVersions = scala2_13And3Versions)
.dependsOn(serverCore, serverTests % Test)
Expand Down
2 changes: 1 addition & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ object Versions {
val akkaHttp = "10.2.10"
val akkaStreams = "2.6.20"
val pekkoHttp = "1.0.1"
val pekkoStreams = "1.0.3"
val pekkoStreams = "1.1.0"
val swaggerUi = "5.17.14"
val upickle = "3.3.1"
val playJson = "3.0.1"
Expand Down

0 comments on commit 010de9f

Please sign in to comment.