File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,11 @@ object Dependencies {
5959 // Since these deps are only used in tests it does not matter anyway.
6060 " org.apache.pekko" %% " pekko-actor-typed" % pekkoVersion,
6161 " org.apache.pekko" %% " pekko-serialization-jackson" % pekkoVersion,
62- " org.apache.pekko" %% " pekko-slf4j" % pekkoVersion
62+ // play-json pulls in newer jackson version than pekkoVersion ships, need to override to avoid exceptions:
63+ // https://github.com/apache/pekko/blob/v1.2.1/project/Dependencies.scala#L110-L111
64+ (" com.fasterxml.jackson.module" %% " jackson-module-scala" % " 2.20.0" )
65+ .excludeAll(ExclusionRule (organization = " org.scala-lang" )),
66+ " org.apache.pekko" %% " pekko-slf4j" % pekkoVersion
6367 ).map(_ % Test )
6468
6569 val reactiveStreams = Seq (" org.reactivestreams" % " reactive-streams" % " 1.0.4" )
You can’t perform that action at this time.
0 commit comments