|
|
+
Francis Galiegue 2013-03-01, 08:34
+
Francis Galiegue 2013-03-01, 11:09
-
Re: Update Jackson dependencies?Tatu Saloranta 2013-03-01, 16:57
On Fri, Mar 1, 2013 at 3:09 AM, Francis Galiegue <[EMAIL PROTECTED]> wrote:
> On Fri, Mar 1, 2013 at 9:34 AM, Francis Galiegue <[EMAIL PROTECTED]> wrote: >> Hello, >> >> avro 1.7.4 still depends on Jackson 1.8.x, which is quite old now. >> >> Is it planned to update that dependency to 2.1.x? This is what I use, >> and when some parse exceptions are reported, I get NoSuchMethodErrors >> on methods which didn't exist in 1.8.x but do in 2.1.x. >> > > No, I was wrong. 2.1.x is not the dependency causing trouble. My > project depends on another one which uses 1.9, this is why I get this. Correct: Jackson 1.x and 2.x use different Java packages and Maven ids, so they can peacefully co-exist. Conflicts will only occur within each major version. This is intended to make it easier to incrementally upgrade to the new major version. -+ Tatu +- |