pjfanning commented on code in PR #3295:
URL: https://github.com/apache/pekko/pull/3295#discussion_r3525668870


##########
serialization-jackson/src/main/scala/org/apache/pekko/serialization/jackson/PekkoJacksonModule.scala:
##########
@@ -13,10 +13,37 @@
 
 package org.apache.pekko.serialization.jackson
 
+import java.lang.invoke.MethodHandle
+import java.lang.invoke.MethodHandles
+import java.util.concurrent.ConcurrentHashMap
+import java.util.function.Function
+
+import scala.Enumeration
+import scala.language.existentials
+
+import com.fasterxml.jackson.core.JsonGenerator
+import com.fasterxml.jackson.databind.BeanDescription
+import com.fasterxml.jackson.databind.BeanProperty
+import com.fasterxml.jackson.databind.JavaType
+import com.fasterxml.jackson.databind.JsonSerializer
+import com.fasterxml.jackson.databind.SerializationConfig
+import com.fasterxml.jackson.databind.SerializerProvider
+import com.fasterxml.jackson.databind.ser.ContextualSerializer
+import com.fasterxml.jackson.databind.ser.Serializers
+import com.fasterxml.jackson.databind.ser.std.StdScalarSerializer
+import com.fasterxml.jackson.module.scala.JsonScalaEnumeration
+
+import org.apache.pekko.annotation.InternalApi
+
 /**
  * Complete module with support for all custom serializers.
  */
-class PekkoJacksonModule extends JacksonModule with ActorRefModule with 
AddressModule with FiniteDurationModule {
+class PekkoJacksonModule
+    extends JacksonModule
+    with ActorRefModule
+    with AddressModule
+    with FiniteDurationModule
+    with ScalaEnumerationModule {

Review Comment:
   I maintain the jackson lib - I will look into getting that lib to work with 
Scala 3.8.
   Much better than moving the code here.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to