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
When you parse class files where not all dependencies are available, you can optionally set failOnMissingClasses = false, but this prints a message on each occurence of a missing class, so the same message is printed sometimes hundreds of times.
Like for signatures parsing, it should only print a summary at end using WARN.
The text was updated successfully, but these errors were encountered:
Output with the attached PR now looks like (this example is from checking classes compiled against Java 19 with Java 17):
> Task :lucene:core:forbiddenApisMain19
While scanning classes to check, the following referenced classes were not found on classpath (this may miss some violations):
java.lang.foreign.MemorySegment, java.lang.foreign.MemorySession, java.lang.foreign.ValueLayout,... (and 5 more).
When you parse class files where not all dependencies are available, you can optionally set
failOnMissingClasses = false
, but this prints a message on each occurence of a missing class, so the same message is printed sometimes hundreds of times.Like for signatures parsing, it should only print a summary at end using WARN.
The text was updated successfully, but these errors were encountered: