This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new ab8dfc6ab8e (doc) Update the contribution guide ab8dfc6ab8e is described below commit ab8dfc6ab8eb150f32790af546ce7c281df58ea7 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Fri Jun 23 16:38:09 2023 +0200 (doc) Update the contribution guide --- CONTRIBUTING.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a9195123642..e0353495494 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,11 +8,13 @@ Then follow these simple guidelines for working on the code and committing your git clone https://github.com/your-github-username/camel.git -- Build the project using Maven: +- Build the project using Maven. For Camel versions 3.x and older: - mvn clean install -Pfastinstall,format + mvn clean install -Pfastinstall -Note: the `format` profile will ensure that the code is properly formatted according to the project standards: +- Build the project using Maven. For Camel versions 4.x and newer (on the `main` branch): + + mvn clean install -Dquickly - Add a unit test with assertions for your changes.