How to make a gradle build finish successful with checkstyle errors?

5.6k Views Asked by At

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?

3

There are 3 best solutions below

1
On BEST ANSWER

There is an even nicer and easier solution than that from Rene. Just add:

checkstyle {
   ignoreFailures = true
}

to your build.gradle file.

2
On

The Checkstyle task can be configured to ignore failures:

checkstyleTask.ignoreFailures = true
0
On

If you are looking for a solution which provides the above functionality along with error reporting in html format and puts all checkstyle configuration in gradle, take a look at gradle-estilo-plugin.

On a side not, I must point out that I wrote this plugin myself and I use it extensively in all of my projects.