Files
Velocity/gradle/checkstyle.gradle
Riley Park 7ca40094cb lots more
2020-11-08 13:26:33 -08:00

12 lines
376 B
Groovy

checkstyle {
def configDirectory = new File(project.rootDir, ["config", "checkstyle"].join(File.separator))
toolVersion '8.14'
configFile new File(configDirectory, "checkstyle.xml")
configProperties = [configDirectory: configDirectory.getAbsolutePath()]
// The build should immediately fail if we have errors.
maxErrors = 0
maxWarnings = 0
}