Re: [jackson-user] NoSuchMethodError: com.fasterxml.jackson.core.JsonParser.getReadCapabilities()

2023-06-08 Thread Tatu Saloranta
On Wed, Jun 7, 2023 at 8:41 PM Ted Yu wrote: > > One way we're trying now is to upgrade jackson-core and jackson-databind from > 2.9.8 to 2.13.3 across the board (without upgrading projects which depend on > jackson-core and jackson-databind). > > Tatu: do you anticipate any issue at runtime ?

Re: [jackson-user] NoSuchMethodError: com.fasterxml.jackson.core.JsonParser.getReadCapabilities()

2023-06-07 Thread Ted Yu
One way we're trying now is to upgrade jackson-core and jackson-databind from 2.9.8 to 2.13.3 across the board (without upgrading projects which depend on jackson-core and jackson-databind). Tatu: do you anticipate any issue at runtime ? Thanks On Wednesday, June 7, 2023 at 4:25:20 AM UTC-7

Re: [jackson-user] NoSuchMethodError: com.fasterxml.jackson.core.JsonParser.getReadCapabilities()

2023-06-07 Thread 김주혁
This definitely sounds like transitive dependency issue 沈. What I can suggest (sadly not a solution) is do some searching around maven how to specify dep. version, override, etc.. On Wednesday, June 7, 2023 at 4:16:48 AM UTC+9 Tatu Saloranta wrote: > On Tue, Jun 6, 2023 at 12:04 PM Ted Yu

Re: [jackson-user] NoSuchMethodError: com.fasterxml.jackson.core.JsonParser.getReadCapabilities()

2023-06-06 Thread Tatu Saloranta
On Tue, Jun 6, 2023 at 12:04 PM Ted Yu wrote: > > Thanks for taking a look. > > The jar is produced with `maven-shade-plugin`. Do you have suggestion on how > I can trace down the origin of 2.6.7 databind in such scenario ? Something in Maven (etc) build would have dependency. But I am not sure

Re: [jackson-user] NoSuchMethodError: com.fasterxml.jackson.core.JsonParser.getReadCapabilities()

2023-06-06 Thread Ted Yu
Thanks for taking a look. The jar is produced with `maven-shade-plugin`. Do you have suggestion on how I can trace down the origin of 2.6.7 databind in such scenario ? Cheers On Tuesday, June 6, 2023 at 11:55:07 AM UTC-7 Tatu Saloranta wrote: > Version 2.6 is not supported (and hasn't for a

Re: [jackson-user] NoSuchMethodError: com.fasterxml.jackson.core.JsonParser.getReadCapabilities()

2023-06-06 Thread Tatu Saloranta
Version 2.6 is not supported (and hasn't for a while), so I am not sure how much we can help here with specific details. But exception message does suggest a version discrepancy: not between 2.6.7.1 and 2.6.7 (those are compatible being patch/micro-path within same minor release), but by

[jackson-user] NoSuchMethodError: com.fasterxml.jackson.core.JsonParser.getReadCapabilities()

2023-06-06 Thread Ted Yu
Hi, We encounter the error shown at the end. Looking at META-INF/maven/com.fasterxml.jackson.core/jackson-databind/pom.xml in the fat jar: com.fasterxml.jackson.core jackson-databind 2.6.7.1 jackson-databind But I don't see 2.6.7 in any pom.xml in our repository. I checked