doanduyhai / Achilles

An advanced Java Object Mapper/Query DSL generator for Cassandra
http://achilles.archinnov.info
Apache License 2.0
241 stars 92 forks source link

Jackson version is not updated in Maven repo #362

Closed vrudikov closed 5 years ago

vrudikov commented 5 years ago

Hi, @doanduyhai

Glad to see you again So I saw that you updated Jackson version on Mar 31 and released 6.0.2 https://github.com/doanduyhai/Achilles/commit/8a2d0cc5721f753ea134a624c16b5b4dc09def4b#diff-0a369498a5a8db3ac8fa606b544c9810

But when I checked Maven repo - Jackson 2.3.3 version is still there https://mvnrepository.com/artifact/info.archinnov/achilles-core/6.0.2

image

Is it some error?

doanduyhai commented 5 years ago

Weird, when using mvn dependency:tree | grep jackson on the master, here is what I can see:

[INFO] +- com.fasterxml.jackson.core:jackson-core:jar:2.9.8:compile
[INFO] +- com.fasterxml.jackson.core:jackson-annotations:jar:2.9.8:compile
[INFO] +- com.fasterxml.jackson.core:jackson-databind:jar:2.9.8:compile
[INFO] +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.8:compile
[INFO] |  +- org.codehaus.jackson:jackson-core-asl:jar:1.9.2:compile
[INFO] |  +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.2:compile

It looks like there is a bug with mvnrepository website. Can you confirm on your side that you get Jackson v 2.9.8 with the above command ?

vrudikov commented 5 years ago

No. I see 2.3.3 You see 2.9.8 because it's in your Maven POM Is it possible that you deployed 6.0.1 instead of 6.0.2?

And the issue is - I'm getting java.lang.VerifyError: Cannot inherit from final class when I want to use the latest Jackson with info.archinnov:achilles-core

vrudikov commented 5 years ago

Here is my proof

image
doanduyhai commented 5 years ago

Ok I get it, it's pretty clear.

The version of Achilles with 2.9.8 of Jackson is 6.0.3-SNAPSHOT, which is not released yet

image

So there is nothing wrong indeed

vrudikov commented 5 years ago

Ok. When we can expect it to be released? I thought if commit was Mar 31 then it was taken into release

doanduyhai commented 5 years ago

I'll attempt a release this weekend

vrudikov commented 5 years ago

Awesome. Thank you

On Fri, Jun 7, 2019, 21:34 DuyHai DOAN notifications@github.com wrote:

I'll attempt a release this weekend

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/doanduyhai/Achilles/issues/362?email_source=notifications&email_token=AADYREV3P7U2GBEFFE74GZDPZKS27A5CNFSM4HVWP4AKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODXGUVCQ#issuecomment-499993226, or mute the thread https://github.com/notifications/unsubscribe-auth/AADYREXNLRUOSMQCWTRXYX3PZKS27ANCNFSM4HVWP4AA .

doanduyhai commented 5 years ago

6.0.3 released

vrudikov commented 5 years ago

Thank you! Update of the year for us 👍

vrudikov commented 5 years ago

Weird. https://mvnrepository.com/artifact/info.archinnov/achilles-core/6.0.3 [404] Not Found: /artifact/info.archinnov/achilles-core/6.0.3 Is release is a something that should take several days? Or maybe Maven Repo issues?

doanduyhai commented 5 years ago

It takes some hours to be uploaded into Maven Central

image