jamesnetherton commented on code in PR #8935:
URL: https://github.com/apache/camel-quarkus/pull/8935#discussion_r3681386426


##########
.oss-ai-helper-rules/project-standards.md:
##########
@@ -0,0 +1,19 @@
+# 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 (wrapper `./mvnw` provided in root — always use it 
instead of bare `mvn`)
+- **Build command:** `./mvnw clean install` (full build with tests) or `./mvnw 
clean install -Dquickly` (fast build, no tests)
+- **Test command:** `./mvnw verify` (JVM integration tests) or `./mvnw verify 
-Dnative -Ddocker` (JVM + native tests)
+- **Format command:** `./mvnw process-resources -Pformat` (run from project 
root, formats code and updates metadata)
+- **Module-specific build:** yes (use `-pl` from root, e.g. `./mvnw clean 
install -pl extensions/kafka -am`)
+- **Parallelized Maven:** yes (`-T1C` for 1 thread per core; `mvnd` Maven 
Daemon also recommended for faster builds)

Review Comment:
   Not sure if we need to guard `Parallelized Maven` with some instruction 
around not running tests or native builds in parallel?
   
   I often see Claude trying to do this.



-- 
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]

Reply via email to