You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apex.apache.org by Shraddha Jog <sh...@synerzip.com> on 2016/12/06 08:43:30 UTC

com.fasterxml.jackson.core.JsonFactory.requiresPropertyOrdering()Z

Dear community,

I am currently working on creation of LogParser.
While writing unit tests for this parser I got following  error :

*java.lang.NoSuchMethodError:
com.fasterxml.jackson.core.JsonFactory.requiresPropertyOrdering()Z*

The same error I saw while running JsonParserTest as well.  This is due to
some faster xml dependencies and its versions present in malhar library.

This can be fixed by adding following dependencies to malhar library -
pom.xml

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.5.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.5.4</version>
</dependency>

Should I raise a PR for above change?

Thanks,
Shraddha

-- 
This e-mail, including any attached files, may contain confidential and 
privileged information for the sole use of the intended recipient. Any 
review, use, distribution, or disclosure by others is strictly prohibited. 
If you are not the intended recipient (or authorized to receive information 
for the intended recipient), please contact the sender by reply e-mail and 
delete all copies of this message.