-
Notifications
You must be signed in to change notification settings - Fork 39
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
refactor(document-handling): Hacking session split document modules #3821
base: main
Are you sure you want to change the base?
Conversation
…erializer module and serializer module
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some questions, otherwise great
@@ -59,7 +59,8 @@ public FeelEngineWrapper() { | |||
.registerModule(DefaultScalaModule$.MODULE$) | |||
.registerModule(new JavaTimeModule()) | |||
.registerModule(new Jdk8Module()) | |||
.registerModule(new JacksonModuleDocument(new DocumentFactoryImpl(null), null)) | |||
.registerModule( | |||
new JacksonModuleDocumentDeserializer(new DocumentFactoryImpl(null), null)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we might need the serializer only righ?
|
||
@Override | ||
public String getModuleName() { | ||
return "JacksonModuleDocument"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need to update the name, same for the other module
@Override | ||
public Version version() { | ||
// TODO: get version from pom.xml | ||
return new Version(0, 1, 0, null, "io.camunda", "jackson-datatype-document"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
Looks good, can you exclude all files not relevant to the document module changes? |
Hey @sbuettner, it was said during the hacking session that we could be doing both same times, but you are right, to be cleaner, let's separate both PR |
…erializer module and serializer module 2
02666be
to
401df28
Compare
Description
Hacking session on document handling
Related issues
closes #
Checklist
no milestone
label.