iluwatar / java-design-patterns

Design patterns implemented in Java
https://java-design-patterns.com
Other
88.27k stars 26.19k forks source link

Upgrade jackson-databind #2870

Closed iluwatar closed 3 months ago

iluwatar commented 3 months ago

The version bump of jackson-databind seems to need some work. See https://github.com/iluwatar/java-design-patterns/pull/2867

Acceptance criteria

surjendu104 commented 3 months ago

Hi @iluwatar , Upgrading version of jackson-databind to 2.17.0 incompatible with current versions of jackson-core in the project which I have found 2.13.4 and 2.15.4. So we also have to upgrade the jackson-core. I have seen that only upgrading jackson-databind to 2.17.0 internally using 2.13.4.

jackson-1

So I have added one extra dependency in project to upgrade the jackson:core to 2.17.0.

dynamic-proxy-dependency-list

After this all the testcase passed in dynamic-proxy and event-sourcing

dynamic-proxy-test-result event-sourcing-test-result

surjendu104 commented 3 months ago

If this is acceptable then I can raise a pr. cc: @iluwatar

iluwatar commented 3 months ago

Hey, sounds good @surjendu104 I'm looking forward to receiving the PR 👍🏻

surjendu104 commented 3 months ago

Hi @iluwatar I have made the pr. ps review it. #2885