This repository was archived by the owner on Jul 30, 2021. It is now read-only.

Description
Lombok uses an odd hack to enable capturing annotations to be applied to generated code, which doesn't play nicely with the plugin:
/tmp/java/demo/src/main/java/com/example/DemoController.java:18: error: cannot find symbol
@RequiredArgsConstructor(onConstructor=@__(@Autowired))
^
symbol: class __
1 error
The class appears to actually compile correctly later, but the plugin itself complains spuriously, and it might have trouble if a class with an @__ annotation were also an entity.