79724165

Date: 2025-08-03 16:19:33
Score: 1
Natty:
Report link

for me Plugin worked
Add this plugin into POM file under build tag:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.10.1</version> <!-- use recent stable -->
    <configuration>
       <source>17</source>
       <target>17</target>
       <annotationProcessorPaths>
          <path>
             <groupId>org.projectlombok</groupId>
             <artifactId>lombok</artifactId>
             <version>1.18.36</version>
          </path>
       </annotationProcessorPaths>
    </configuration>
</plugin>
Reasons:
  • Blacklisted phrase (1): this plugin
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: suhas jadhav