apupier commented on code in PR #24251: URL: https://github.com/apache/camel/pull/24251#discussion_r3474741381
########## .oss-ai-helper-rules/project-standards.md: ########## @@ -0,0 +1,18 @@ +# Project Standards + +This rule file contains build tools, commands, and code style constraints for the project. Commands read this file to determine how to build, test, and format code. + +- **Build tool:** Maven +- **Build command:** `mvn verify` +- **Test command:** `mvn verify` +- **Format command:** `cd <module> && mvn -DskipTests install` +- **Module-specific build:** yes (always run `mvn` in the module directory where changes occurred) +- **Parallelized Maven:** no (resource intensive, do NOT parallelize Maven jobs) +- **Code style restrictions:** + - Do NOT use Lombok (unless already present in the file) + - Do NOT change public API signatures without justification + - Do NOT add new dependencies without justification + - Maintain backwards compatibility for public APIs + +## Version +9cff91b315de9587ebd2f353d255dd837190061c Review Comment: What does it mean? -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
