Hello,
I'm unsure if this is a bug or an expected behavior. So before opening a issue on GitHub I want to hear your opinion.
Classes with only class members and lombok annotations are ignored completely in the final report.
e.g.
package it.impl.lomboco;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public class AWithLombok {
private final boolean bool;
}
The class is not reported at all which leads into problems [1] with tools relying on that report and synchronize the report based on an internal representation of the source tree.
I'd expect at least that the class is present in the report. Here [2] are some more testing. What do you think about that issue?
Thanks and greetings
Benjamin