### Running Integration and Unit Tests with Maven Source: https://github.com/apache/maven-compiler-plugin/blob/master/README.md This Maven command executes all unit and integration tests for the project. The `-Prun-its` profile specifically enables integration tests, and `verify` runs the build lifecycle up to the verification phase, including tests. ```Shell mvn -Prun-its verify ``` -------------------------------- ### Checking Git Diff for Whitespace Issues Source: https://github.com/apache/maven-compiler-plugin/blob/master/README.md This command checks for unnecessary whitespace changes in the current Git diff before committing. It helps maintain a clean code style and minimal diffs. ```Shell git diff --check ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.