You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CodeClimateReportPlugin.java:
- ObjectMapper.setSerializationInclusion() is deprecated due to new jackson version
-> replace with: private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper().setDefaultPropertyInclusion(NON_NULL);
-> add .writerWithDefaultPrettyPrinter() to ObjectMapper Call
- getLocation(): path attribute for codeclimate report should be set after checking whether sourceLocation is an instance of FileLocation
CodeClimateReportPlugin.java:
- ObjectMapper.setSerializationInclusion() is deprecated due to new jackson version
-> replace with: private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper().setDefaultPropertyInclusion(NON_NULL);
-> add .writerWithDefaultPrettyPrinter() to ObjectMapper Call