This project contains implicit marshaller and unmarshaller to enable simple endpoint and consumer development.
addSbtPlugin("com.evolution" % "sbt-artifactory-plugin" % "0.0.2")
libraryDependencies += "com.evolutiongaming" %% "akka-http-play-json" % "0.2.0"import akka.http.scaladsl.marshallers.playjson.PlayJsonSupport._The project supports the Pekko version via the adapter layer: https://github.com/evolution-gaming/akka-to-pekko-adapter. If you want to use it, replacing the dependency should suffice.
libraryDependencies += "com.evolutiongaming" %% "pekko-http-play-json" % "0.2.0"Optionally you can rename the import to a Pekko version package:
import org.apache.pekko.http.scaladsl.marshallers.playjson.PlayJsonSupport._