You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I add equalsverfier (1.5) and build with maven-enforcer-plugin,
then dependency convergence errors appear:
+-de.weltraumschaf:caythe:0.1.0-SNAPSHOT
+-nl.jqno.equalsverifier:equalsverifier:1.5
+-cglib:cglib:3.1
+-org.ow2.asm:asm:4.2
and
+-de.weltraumschaf:caythe:0.1.0-SNAPSHOT
+-nl.jqno.equalsverifier:equalsverifier:1.5
+-org.ow2.asm:asm:5.0.3
This means You are link ASM version 5.0.3 but CGLib comes also with ASM but
version 4.2.
Original issue reported on code.google.com by [email protected] on 1 Sep 2014 at 9:24
The text was updated successfully, but these errors were encountered:
That's true.
ASM 5 is required to support Java 8. However, CGLib have not upgraded yet. That
is to say, they've upgraded, but they haven't released yet, and it doesn't look
like they will do that soon. We'll have to wait.
(See also https://github.com/cglib/cglib/issues/8 and
https://github.com/cglib/cglib/pull/9)
I have fixed this issue in version 1.5.1.
Instead of waiting for CGLib to release a new version, I've decided to package
all of EqualsVerifier's dependencies (ASM, CGLib and Objenesis) in an "uber
jar" and release it like that. That way, there shouldn't be any dependency
conflicts anymore.
Original issue reported on code.google.com by
[email protected]
on 1 Sep 2014 at 9:24The text was updated successfully, but these errors were encountered: