Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dependency on pekko-serialization-jackson #2028

Merged
merged 1 commit into from
Dec 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import com.typesafe.tools.mima.core._
import org.scalajs.linker.interface.ModuleSplitStyle
import sbtcrossproject.CrossPlugin.autoImport.{ crossProject, CrossType }

Expand All @@ -18,7 +17,7 @@ val jsoniterVersion = "2.25.0"
val laminextVersion = "0.16.2"
val magnoliaScala2Version = "1.1.6"
val magnoliaScala3Version = "1.3.4"
val pekkoVersion = "1.0.1"
val pekkoHttpVersion = "1.0.0"
val playVersion = "2.8.21"
val playJsonVersion = "2.10.3"
val scalafmtVersion = "3.7.17"
Expand All @@ -35,6 +34,8 @@ val zioHttpVersion = "3.0.0-RC2"
val zioOpenTelemetryVersion = "3.0.0-RC15"
val zioPreludeVersion = "1.0.0-RC21"

Global / onChangedBuildSource := ReloadOnSourceChanges

inThisBuild(
List(
scalaVersion := scala213, // Change to control IntelliJ's highlighting
Expand Down Expand Up @@ -395,10 +396,9 @@ lazy val pekkoHttp = project
if (scalaVersion.value == scala3) Seq()
else Seq(compilerPlugin(("org.typelevel" %% "kind-projector" % "0.13.2").cross(CrossVersion.full)))
} ++ Seq(
"org.apache.pekko" %% "pekko-http" % "1.0.0",
"org.apache.pekko" %% "pekko-serialization-jackson" % pekkoVersion,
"com.softwaremill.sttp.tapir" %% "tapir-pekko-http-server" % tapirVersion,
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion % Test
"org.apache.pekko" %% "pekko-http" % pekkoHttpVersion,
"com.softwaremill.sttp.tapir" %% "tapir-pekko-http-server" % tapirVersion,
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion % Test
)
)
.dependsOn(core, tapirInterop % "compile->compile;test->test")
Expand Down