-
Notifications
You must be signed in to change notification settings - Fork 123
Closed
Labels
P4type=otherMiscellaneous activities not covered by other type= labelsMiscellaneous activities not covered by other type= labels
Description
Hello,
i generate Java Files with Lombok Annotations from my own Annotation Processor, when testing i get the following compile error : "is not abstract and does not override abstract method".
Test Case
void process() {
ReleationProcessor releationProcessor = new ReleationProcessor();
Compilation compilation = javac()
.withProcessors(releationProcessor)
.compile(JavaFileObjects.forResource("TestFile.java"));
CompilationSubject.assertThat(compilation).succeeded();
Generated File from Annotation Processor
@Setter
@Getter
public final class Testing implements Model {
private String targetType;
}
On my normal build everything works fine.
Is there some way to ignore the compile error or add an option for Lombok Annotations.
Ty Mom0
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
P4type=otherMiscellaneous activities not covered by other type= labelsMiscellaneous activities not covered by other type= labels