prestodb/presto

Exclude module-info.class from byte code checks

Open

#22.193 geöffnet am 13. März 2024

Auf GitHub ansehen
 (1 Kommentar) (0 Reaktionen) (0 zugewiesene Personen)Java (5.240 Forks)batch import
buildcleanupgood first issue

Repository-Metriken

Stars
 (15.558 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 34T 14h) (120 gemergte PRs in 30 T)

Beschreibung

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.

Contributor Guide