Velocity/gradle/checkstyle.gradle

8 lines
246 B
Groovy
Raw Normal View History

checkstyle {
toolVersion '8.14'
configFile new File(project.rootDir, ['config', 'checkstyle', 'checkstyle.xml'].join(File.separator))
2018-12-30 06:22:36 +08:00
// The build should immediately fail if we have errors.
maxErrors = 0
maxWarnings = 0
}