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
[WARNING] Invalid bytecodeVersion for module-info.class: expected 52, but was 53
This is not a surprise. module-info.class is something for java 9+ (byte code 53) while most of the build is Java 8 (byte code version 52).
This isn't a big deal since Java 8 will ignore module-info.class. There's no real problem here, but if anyone happens to know a straight-forward way to suppress these particular warnings that would be nice.
The text was updated successfully, but these errors were encountered:
The build is full of these warnings:
[WARNING] Invalid bytecodeVersion for module-info.class: expected 52, but was 53
This is not a surprise. module-info.class is something for java 9+ (byte code 53) while most of the build is Java 8 (byte code version 52).
This isn't a big deal since Java 8 will ignore module-info.class. There's no real problem here, but if anyone happens to know a straight-forward way to suppress these particular warnings that would be nice.
The text was updated successfully, but these errors were encountered: