-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Description
Describe the bug
The removal of com.fasterxml.jackson.databind.PropertyNamingStrategy#PASCAL_CASE_TO_CAMEL_CASE
creates problems within AWS environments. The field is referenced by com.amazonaws.util.EC2MetadataUtils
(transitive reference in com.amazonaws:aws-java-sdk-core:jar:1.11.883
) and raise a NoSuchFieldError if overwriting the Jackson environment of AWS com.amazonaws:aws-java-sdk-core
(which is Jackson 2.6.7).
Version information
2.12.0-rc1
To Reproduce
Call com.amazonaws.services.sqs.AmazonSQSClientBuilder#defaultClient()
(of package com.amazonaws:aws-java-sdk-sqs:jar:1.11.883
) with com.fasterxml.jackson.core:jackson-databind:jar:2.12.0-rc1
.
Expected behavior
There is no NoSuchFieldError in combination of com.amazonaws:aws-java-sdk-core and Jackson.