The newest version of java-util includes this PR:
metamx/java-util#34
Which pulls in the json-path dependency.
json-path depends on json-smart v2.2.1 which depends on accessors-smart v1.1:
http://search.maven.org/#search%7Cga%7C1%7Caccessors-smart
Download that jar and you will see that it bundles asm classes. If you happen to depend on anything else that uses a different version of ASM, those classes will conflict with the classes you depend on and cause lots of problems.
@gianm @jon-wei
The newest version of java-util includes this PR:
metamx/java-util#34
Which pulls in the json-path dependency.
json-path depends on json-smart v2.2.1 which depends on accessors-smart v1.1:
http://search.maven.org/#search%7Cga%7C1%7Caccessors-smart
Download that jar and you will see that it bundles asm classes. If you happen to depend on anything else that uses a different version of ASM, those classes will conflict with the classes you depend on and cause lots of problems.
@gianm @jon-wei