Maven build cannot find symbol when accessing project lombok annotated methods,
问题 I'm using project lombok for the first time and I have problems compiling the project via maven when I run the build I receive errors where methods annotated with project lombok annotations are called. This is the annotated parameter: private @Getter @Setter String paymentNonce = null; and in this line for example the maven breaks the build: if (!StringUtilities.isNullOrEmpty(getPaymentNonce())) { this is my maven dependency <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok