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();
}
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: