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
Are there plans to pick this up again and support Java 11 + newer versions of Jersey?
Java 11 compiler target currently fails due to the Jersey 2.25.1 using an older asm version - see ClassReader.java:
// checks the class version
// added "support" for java 9 compiled classes
if (readShort(off + 6) > Opcodes.V9) {
throw new IllegalArgumentException();
}
The text was updated successfully, but these errors were encountered:
Are there plans to pick this up again and support Java 11 + newer versions of Jersey?
Java 11 compiler target currently fails due to the Jersey 2.25.1 using an older asm version - see ClassReader.java:
The text was updated successfully, but these errors were encountered: