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
The failure is due to the asm library, but in any case the module-info.class file should not be converted as it is not interpreted by Java 8 or lower.
If I exclude the module-info.java file from build everything works fine.
The text was updated successfully, but these errors were encountered:
I created a project that compiles with maven using indications from:
http://maven.apache.org/plugins/maven-compiler-plugin/examples/module-info.html
Basically, after doing that the
target/classes
folder contains the:module-info.class
file which has the bytecode version defined as: 0x35 (53 - Java 9)Retrolambda fails with the exception:
The failure is due to the asm library, but in any case the
module-info.class
file should not be converted as it is not interpreted by Java 8 or lower.If I exclude the
module-info.java
file from build everything works fine.The text was updated successfully, but these errors were encountered: