Here are more details:
The web app is using DropWizard, which uses "jackson-provider" Json serializer by default.
This web app have "com.oracle.oci.sdk:oci-java-sdk-secrets" OCI dependencies to make SDK calls.
But OCI SDK uses "media-jackson" library to make REST calls in above module.
This is causing conflict as "media-jackson" configuration is overriding the "jackson-provider". This is causing custom Json serializer by passed.
Is it possible to customize OCI SDK configuration to use "jackson-provider" instead of using the built-in serializer? Or any work around to resolve this issue ?
Thanks