Skip to content

Instantly share code, notes, and snippets.

@Subrat-panda
Subrat-panda / quality.gradle
Created August 10, 2016 05:58 — forked from skhatri/quality.gradle
Gradle Checkstyle HTML Reporting
apply plugin: 'checkstyle'
checkstyleMain {
ignoreFailures = false
reports {
include ( '**/*.java')
xml {
destination "${rootProject.buildDir}/reports/checkstyle/main.xml"
}
}