aritgithub opened a new issue, #8308: URL: https://github.com/apache/netbeans/issues/8308
### Apache NetBeans version Apache NetBeans 25 ### What happened Classic Maven project configured for Lombok integration. The project builds successfully, but the NetBeans IDE reports error ("cannot find symbol") on all properties that should be generated by Lombok annotations. ### Language / Project Type / NetBeans Component Java Maven web application project ### How to reproduce ``` ... <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.36</version> <scope>provided</scope> </dependency> ... <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler-plugin.version}</version> <configuration> <compilerArgs> <arg>-parameters</arg> </compilerArgs> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.36</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> ... ``` ### Did this work correctly in an earlier version? No / Don't know ### Operating System MacOS ### JDK JDK 21 ### Apache NetBeans packaging Apache NetBeans binary zip ### Anything else _No response_ ### Are you willing to submit a pull request? No -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org For additional commands, e-mail: notifications-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists