I haven an Android Gradle build that is run on Jenkins.
Jenkins checks checkstyle warnings and errors and publishes the results. If there is a checkstyle error the build stops and is marked as failed. Jenkins also stops and does not publish the checkstyle report.
How can I let the build run through even with checkstyle errors?
There is an even nicer and easier solution than that from Rene. Just add:
to your build.gradle file.