Hi AFAIR building Camel source using the sourcecheck Profile enabled used to break the build if there was any Checkstyle issue:
mvn clean install -Psourcecheck However currently when there’s a Checkstyle issue the build doesn’t seem to break for me, instead I see [INFO] Starting audit... [ERROR] … [ERROR] … [ERROR] … [ERROR] … Audit done. And then the build continues. The result of Checkstyle are then available unter the target/checkstyle-result.xml folder of the given Maven module. Do you know how one can enforce the build to break as it was the case before? As otherwise you continuously need to watch the maven log on console or check target/checkstyle-result.xml for each given module. Babak